Hi,
I was trying to do something similar to Datagridview in .net where we can display one record (details) at a time and using scroll or navigation let the user go to next record.
Thanks
Manoj
Hi Manoj,
See card-view functionality. Basically you should be able to display one record at a time by setting the grid.DisplayLayout.Bands[0].CardView to true and setting MaxCardAreaCols and MaxCardAreaRows properties off the CardSettings to 1. This along with row-layout functionality you can basically display each record as sort of like a form with complex arrangements of columns.
You can also hide the scrollbar in case you want to expose external ui (like next/prev buttons) for navigating rows. For that you would set the Cardscrollbars on the CardSettings and as for the actual navigation to move to next/prev record, you would use set the Rows.FirstVisibleCardRow to next/prev row.
Hope this helps,
Sandip
Hi Sandip,
I was able to do one record at a time but not the scrolling thing using custom button as Grid.rows doesnt have FirstVisibleCardRow property. Any sample would be appreciated.