Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to update a cell table at run time, the cell table gets its date from a list

Cell_Table.setRowData(0,AllMessages);

I am trying to update the List AllMessages then do this Cell_Table.redraw(); with no success.

I am trying this do this again Cell_Table.setRowData(0,AllMessages); with no success AS WELL

when I am using the same technique to add rows, everything is ok but when i am removing some data from the list feeding it, the cell table is not being updated!

share|improve this question
When using the same technique, i am adding the cell table is being updated but when removing, it not updating – Noor Jan 5 '11 at 19:11

1 Answer

up vote 6 down vote accepted

by
John LaBanca

@ GWT Discussion

setRowData(int, List) replaces the range of data. So, if the list gets shorted, it doesn't touch the items that appear after the end of the list.

You have to update the row count as well: table.setRowData(0, NewMessages); table.setRowCount(NewMessages.size(), true);

Or, you can use the new version of setRowData that does not take a start index (since GWT 2.1.1): table.setRowData(NewMessages);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.