It is the object which specifies filter Expression or Callback Function to get only the data rows of matching the condition when organizing grid row model from DataSet.
It is used as GridBase.rowFilter property, and this filter information is managed in row model internally.
// Get and display only the top 10 rows.
grid.setRowFilter({
callback: null,
expression: "row < 10"
});