[CLOSED] Multihead / Filter - Write column Data

  1. #1

    [CLOSED] Multihead / Filter - Write column Data

    I am using the following example
    https://examples2.ext.net/ # / GridPanel / multihead / Filter /

    I have a column that is of type Date, in the filter field would be able to write the value you want to search.
    If possible I would also use the existing resource where I click and displays a calendar, as well as being able to write the value you want to search this field.
    Last edited by Daniil; May 17, 2011 at 2:04 PM. Reason: [CLOSED]
  2. #2
    Hi,

    I guess you can.

    Regarding the example you mentioned.
    https://examples1.ext.net/#/GridPane...header/Filter/

    It's possible to place
    <ext:DateField ID="LastChangeFilter" runat="server" Editable="false">
    everywhere on the page, not only in the grid.
  3. #3
    Quote Originally Posted by Daniil View Post
    Hi,

    I guess you can.

    Regarding the example you mentioned.
    https://examples1.ext.net/#/GridPane...header/Filter/

    It's possible to place
    <ext:DateField ID="LastChangeFilter" runat="server" Editable="false">
    everywhere on the page, not only in the grid.
    Ok, I changed to the Editable true, but when writing a date he does not perform the query.
    Any suggestions
  4. #4
    Yes, there is Select listener to perform filtering.

    I can suggest something like this:

    Example
    <ext:HeaderColumn Cls="x-small-editor">
        <Component>
            <ext:DateField 
                ID="LastChangeFilter" 
                runat="server" 
                Editable="true" 
                EnableKeyEvents="true">
                <Listeners>
                    <KeyUp Handler="var v = this.getValue();
                                    if (Ext.isDate(v)) {
                                        applyFilter(this);
                                    };" 
                           Buffer="250" />
                    <Select Handler="applyFilter(this);" />
                </Listeners>
            </ext:DateField>
        </Component>                                    
    </ext:HeaderColumn>

Similar Threads

  1. Replies: 0
    Last Post: Jul 30, 2012, 3:32 PM
  2. Replies: 2
    Last Post: May 01, 2012, 4:57 PM
  3. Replies: 1
    Last Post: Apr 19, 2012, 12:35 PM
  4. Replies: 0
    Last Post: Nov 14, 2010, 1:55 AM
  5. [CLOSED] Missing filter column using MultiHeader Filter.
    By flormariafr in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Aug 12, 2010, 1:07 PM

Tags for this Thread

Posting Permissions