How can I add column and row borders and headers for each columns in Zebble for Xamarin grid and use it like a ASP.NET GridView or html table?
For example in below sample snippet want to place id="col1" in first column and Id="col2" in second column
<Grid z-of="rowItem, Cell" Id="List" DataSource="Items" LazyLoad="true" EmptyText="Empty list">
<z-Component z-type="Cell" z-partial="true" z-base="GridCell[rowItem]" >
<TextView Id="col1" CssClass="tableCell" Text="@Item.Col1" />
<TextView Id="col2" CssClass="tableCell" Text="@Item.Col2" />
</z-Component>
</Grid>
I did not found any documentation regarding this requirement at zebble grid documentation page.
I am using Zebble 4.0.140