Filter Values

Hi Team,

Is it possible to set the filter text box values?
How to do it using javascript?

Thanks.

- Agile

There are no build in methods to access filter inputs in header.

But it can be done through DOM as follows:
 
var input = grid.hdr.rows[2].cells[Column_Index].getElementsByTagName(“INPUT”)[0];

input.value=“Foo”;