Re: PagingScrollTable not removing row

2009-06-03 Thread Liv
Hi as far as I can see the error is here: for(int i = 0; i < leftRowIds.length; i++) { leftDataTable.removeRow(leftRowIds[i]); } turn it around: for(int i = leftRowIds.length; i >= 0; i--) { leftDataTable.removeRow(leftRowIds[i]); } otherwise while de

PagingScrollTable not removing row

2009-06-02 Thread Gary S
I have a picklist using the PagingScrollTable (Feb 27 build and only have 1 page). I select rows, then copy them to another PagingScrollTable and remove the selected rows from the first table. This works, except not all selected rows disappear from the first table. When I select rows 0,1,2, they a