I will show an error on your examples.
- Open page http://mvc.devexpress.com/GridView/RowSelection
In developer console call next methods:
JavaScriptgvRowSelection.SelectRows()
gvRowSelection.GetSelectedFieldValues("ContactName",function(keys){alert(keys.length);})
You see the number equal to the number of rows in a table (not the number of rows in one page) - it's good.
2) Open page http://mvc.devexpress.com/GridView/SimpleCustomBinding
In developer console call next methods:
JavaScriptgridView.SelectRows()
gridView.GetSelectedFieldValues("From",function(keys){alert(keys.length);}
Instead of the number of rows in the table, you will see the number of rows on a page - it's a bug.My grid uses Custom binding. After calling selectRows() I want to get the keys for all of the selected rows in a table. But I am getting a list of keys the current page only.
Hello Pavel,
Thank you for contacting us. We need some additional time to review this scenario to provide you with a precise answer.
We appreciate your patience while we are working on finding a solution to your inquiry.
Hello,
I have reproduced this issue and forwarded it to our R&D team for further investigation.