Display data in grid format just like GridView in Android

Hi,

I want to show data in Grid format.

For Eg :

item1 item2 item3
item4 item4 item6
item7 item8 item9

Note : Each Item represents a row of the table

Thanks in advance

Hi,

Take a look at ResponsiveGridLayout. Seems that it fits your needs.

Regards,
Gleb

Hi,

I have checked ResponsiveGridLayout. It matches my requirement. But is it possible to display data using data loader container on ResponsiveGridLayout ?

Eg : consider a single cell (Student data)

Photo 1____Photo 2
Name ____Name
Age _____Age

Photo 3____Photo 4
Name _____Name
Age _____Age

Note : underscore is used as a separator for showing you the expected output.

Thanks in advance

ResponsiveGridLayout is just a layout, so it has no data binding. It’s up to you how to configure it to display data. Note that you can obtain items from CollectionContainer using the getItems() method and iterate over them adding corresponding components to ResponsiveGridLayout.

Gleb

1 Like