brakebg
brakebg

Reputation: 414

CellList in GWT, can't clear it

I can't clear CellList in GWT, i have done some research and found a post where some guy explain that using replaceAllChildren() but there is no method in CellList class. I m with GWT 2.3 . Actually this method present in class AbstractHasData which is extended from CellList class but unavailable.

Any ideas how can i clear it?

Thanks

Upvotes: 0

Views: 790

Answers (1)

Thomas Broyer
Thomas Broyer

Reputation: 64561

Have you tried cellList.setRowCount(0) ?

Upvotes: 2

Related Questions