hi all,
My requirement is to display the cardview for the selected row in the grid. Card view is displayed but the text in the rows are hiding.
Here is my code:
UltraGridBand band = _UltraGrid.DisplayLayout.Bands[0];
band.CardSettings.MaxCardAreaCols = 1;
band.CardSettings.MaxCardAreaRows = 1;
band.CardSettings.CardScrollbars = CardScrollbars.Horizontal;
band.CardSettings.AutoFit = true; band.CardSettings.AllowLabelSizing = true; band.CardSettings.AllowSizing = true; band.Override.RowSizingArea = RowSizingArea.EntireRow; int YOrigin = 0;
i want to load the cardview with the height of the row should change dynamically as per the text to be binded.
Hello,
I tried this and it always works fine for me so I attached my sample to this post for you. Please review it and feel free to let me know if I misunderstood you or if you have any other questions.