I am trying to update the cell table at runtime, the cell table gets its date from the list
Cell_Table.setRowData(0,AllMessages);
I am trying to update a List AllMessagesand then do it Cell_Table.redraw();without success.
I try to do it again Cell_Table.setRowData(0,AllMessages);without success AS WELL
when I use the same technique to add rows, everything is fine, but when I delete some data from the list that feeds it, the cell table is not updated!
source
share