Hi,
I need to understand how the getFilteredRows behaves in this scenario:
1. apply a getFilteredRows with a numeric min & max for a column that has numeric values
2. do a setRows from the row indices i get from 1st step (these are applied min & max->min: 10000 & max: Max in that column)
3. apply a getFilteredRows again with a numeric min & max for a column that has numeric values (on a column other than that i applied in step 1)
4. do a setRows from the row indices i get from 3rd step (these are applied min & max->min 1.05 & max: Max in that column)
Now i expect that the second getFilteredRows will act on the rows that were there after i did setRows from 2nd step
Am i right? I do not see this behavior though .. i mean even though i applied 1.05 as min for filter in 4th step i see values that that <1.05
But if i apply only the filter in 3rd step first (without any other previously) .. it works fine
What i do for applying filter is this--
. get column, min & max from user
. do getFilteredRows & get the row indices
. then setRows by passing row indices i get from previous step
Thanks,
Vikas