Hello, I'm trying to filter a couple columns of my grid for values in between two numbers. What am I doing wrong?
grid.filterByColumn('ColumnOne', 'greaterThan', valOne, 'and');
grid.filterByColumn('ColumnOne', 'lessThan', valTwo, 'and');
grid.filterByColumn('ColumnTwo', 'greaterThan', valOne, 'and');
grid.filterByColumn('ColumnTwo', 'lessThan', valTwo, 'and');