Hi,

Im trying to set value into WebGrid's filter textbox and apply filtering.
Here is a code Im using:

 var grid = ISGetObject('myGrid');

var filterRow = grid.RootTable.ToRowObject(grid.RootTable.GetFilterRow());

filterRow.GetCells().GetNamedItem('UserStatus').SetText('Active', true);

filterRow.GetCells().GetNamedItem('UserStatus').Value = 'Active';

grid.Refresh();

After applying calling Refresh method, grid is not filtered.
I expect it to show me result with 'Active' value in 'UserStatus' column.
Did I miss here anything?
Thanks.