Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
325
cardview rows are not fully visible
posted

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.