How to add the checkbox in the filter

Hi Sir,

i want to add the check box in the filter.
Is it possible to add the check box in the filter.if the user select multiple check box in the drop down corresponding data will be display.

Please provide the solution as soon as possible.

Thanks and Regards
Sumit

Unfortunately such feature is not supported.
You will have to create your own custom filter, for example, using the dhtmlxCombo.
docs.dhtmlx.com/doku.php?id=dhtm … of_filters

here is the example of creating a combo filter:

[code]

// after the the grid’s loading
mygrid.makeFilter(“combo_zone”,0);

mygrid.getFilterElement(0).DOMParent._filter = function(){
var input = this.value; // gets the text of the filter input
return function(value, id){
for(var i=0;i<mygrid.getColumnsNum();i++){ // iterating through the columns
var val=mygrid.cells(id,i).getValue() // gets the value of the current cell
if (val.toLowerCase().indexOf(input.toLowerCase())!==-1){ // checks if the value of a cell have the text from the filter
return true
}
}
return false
}
}[/code]