I am using the row layout feature of the grid and see that the records display from top to bottom on the screen. Is there any way to get them to display left to right?
Hello rehemann,
To display all records in a single row you can use the CardView Row Layout and then set the MaxCardAreaRows
myRowLayout.CardView = true; band.CardSettings.MaxCardAreaRows = 1;
myRowLayout.CardView = true;
band.CardSettings.MaxCardAreaRows = 1;
I can't use cardview. I am using row layout instead. Is it possible using row layout?
In that case, even the CardView is not an option. You can set the MaxCardAreaCols, but it will display the rows from top to bottom starting from the first column.
So, currently it is not possible to display the grid’s rows from left to right, but this is a very good feature idea. It would be great if you suggest this feature for future versions here
Understood, but I don't want just one row of cards. I want a vertical scrollbar (there doesn't seem to be an option for that, only horizontal). I want the cards to fill from left to right and then continue on the next row, again left to right. Is that possible?
Using the RowLayout, in the Row Layout Designer you can choose between Standard and Card View. What you want to achieve is impossible with the Standard View as it arranges the grid’s rows one after another. If you use the Card View instead, you can set the MaxCardAreaRows property as already suggested.