list attribute in table widget

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

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