Hey Tony, whats up, man?
The error really occours.
Try this:
1 – go to the multiselecting example on the web site (as u have had suggested)
2 – check some few options and click Get selected Ids
3 – check the “check all” checkbox at the top of the grid
4 – click “get selected ids” and see the result
You might notice that the rows you have selected first are repeated at the alert when you check all rows.
If u still can reproduce the bug, pls let me know.
[edited]
hey, I had to make a solution so that I could get my work done. Its not so fancy but it works fine until you guys get the bug fixed.
Basicly I made a function which returns a new array without repeating any rows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
function getDistinctArray(arrSource){<br /> var newArr = new Array();<br /> var isRepeated = false;<br /> <br /><br /> for(i=0; i < arrSource.length; i++){<br /> for(j=0; j < newArr.length; j++){<br /> if(arrSource<i> == newArr[j]){<br /> isRepeated = true;<br /> }<br /> }<br /> if(!isRepeated){<br /> newArr[newArr.length] = arrSource</i><i>;<br /> }<br /> isRepeated = false;<br /> }<br /> <br /><br /> return newArr;<br /> }<br /> </i> |