Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by gwanok on Jun 25, 2008 03:41
open dhtmlx forum
Filter in Grid : question 2

Filter in Grid : each new character typed by the user would narrow the list. For example, "C" will display all items including this letter but typing "H" afterwards will instantly update the list to include only the items including "CH" and so on...

I want do it not grid head but grid itself.

How can do it?

Answer posted by Support on Jun 25, 2008 09:47
Default filters placed in header|footer but filter data part of grid.

If you want to use some custom input outside of grid , you can use filterBy API call

<input type="text" onkeypress=" mygrid.filterBy(column_index,this.value)" />


where
    mygrid - grid object
    column_index - index of column by which grid need to be filtered