Java Util List in a grid

Hi, I need to include a java.util.List in an editable matrix.

Just use a two dimension’s array variable (Lists are perfectly acceptable) as inicial value of an widget like editable grid.

Yes, I do this but the process is waiting and does not show the table. Any other configuration needed?

How are you building your array?

Just use a two dimension’s array variable (Lists are perfectly acceptable) as inicial value of an widget like editable grid.

The array is created by means of a connector to mysql and returns a java.util.List. In a list widget type displays perfectly, the problem is with the table

So you are working with an one domension Array?

I am working with an array of n rows and 1 column

So, one dimension. If you want to work with editable grids you need to create a 2 dimensions array, a list (lines) containing other list (columns).

There is some example of this?