Re: Dynamic SelectionCell

2018-10-31 Thread Rogelio Flores
I misunderstood your question to mean that you just wanted to make data dynamic in your table, which looks like you already are, except for the SelectionCell. Looks like SelectionCell can only get its list of available options in its constructor, so what I would try is getting the updated list

Re: Dynamic SelectionCell

2018-10-31 Thread Ousti Driss
Can you elaborate ? I managed to update all the columns with the response I got from the servlet, except the one with the selection cell, this is how I instanciate a SelectionCell Column categoryColumn = new Column(new SelectionCell(list)) { } where list is a List, therefore all my rows have

Re: Dynamic SelectionCell

2018-10-30 Thread Rogelio Flores
Of course it is possible, just look at the CellTable in the GWT Showcase: http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellTable Instead of a DataProvider as in the example, you probably want an AsyncDataProvider which gets the data from the server through your servlet. On