Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by kiran kanukuntla on Dec 17, 2008 09:43
open dhtmlx forum
filtering with simple html table

Hi,

I was looking at many examples to find how filtering works. All the time I see creating a grid dynamically and attaching the header to it, and reading the data from xml file and displaying it.

In my case I don't get data from an xml file. In this case how can I achieve filtering based on a column.

here is my table.
<table gridWidth="auto"
class="dhtmlxGrid" imgpath="../codebase/imgs/" gridHeight="auto"
    lightnavigation="true" forceCellTypes="true">
<tr type="ro"><td>Lol</td>
<td>Tjsfd</td>
</tr>
</table>


Answer posted by Support on Dec 17, 2008 09:55
You can fully replace one of headers cell with filter 
        <tr type="ro"><td>#text_filter</td>

Or use beforeinit attribute to define more complex logi

<script>
function attach_h(){
   mygrid.attachHeader("#text_filter,#text_filter");
}
</script>
<table gridWidth="auto"  class="dhtmlxGrid" name="mygrid" onbeforeinit="attach_h()" ...


In both cases you need to include dhtmlxgrid_filter.js