list attribute in table widget

1
0
-1

Hi, I have bussines data attribute, type list and I want this variable to appear in table widget in different rows. For, example if I have array list variable [lion,tiger,wolf] it must appear in table widget like this

Column1 Column2 Column3

lion ........ ........

tiger ......... ........

wolf ........ ........

Can someone help me?

Thanks in advance

1 answer

1
0
-1

You have to bind the array variable to the Available values of the table. Then define the attribute to display per column in Column keys, eg: if you have an array of json objects { name, description, lastUpdate }, just define: name,description, lastUpdate in Column keys. If you have a primitive array it is not required and you'll a single column table.

HTH

Romain

Notifications