2

I am displaying some data in an Infragistics igGrid. After displaying, I manipulate some of the rows displayed and reload the data. After reloading, the datagrid resets the filter settings. How can I call the data filtering function manually after i reload the data.

Konstantin Dinev
  • 34,219
  • 14
  • 75
  • 100
Hassam
  • 79
  • 1
  • 12

1 Answers1

2

Use this code to call filtering programmatically.

 $(".selector").igGridFiltering("filter", ([{fieldName: "Name", expr: "Adjustable Race", cond: "equals", logic: "OR"}]));

See this link for more details.

sql_dru
  • 301
  • 2
  • 11