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
75
CardView: can UltraGrid scrolls Vertically
posted

We're using the Grid with CardView=true;

           UltraGridBand band = ultraGridResults.DisplayLayout.Bands[0];
            band.UseRowLayout = true;
            band.CardView = true;
            band.CardSettings.Style = CardStyle.Compressed;
          //  band.CardSettings.CardScrollbars = CardScrollbars.None;//???

if GridRows do not fit into grid verically(sum of Row's heights > Grid.Height), grid automatically expands and scrolls Horizontally. Can grid be forced to expand vertically to prevent appearance of multiple columns on screen?

Thank You,

Mike

Parents
  • 469350
    Suggested Answer
    Offline posted

    Hi Mike,

    No, there's currently no way to do this with CardView. If you want vertical scrolling instead of Horizontal, maybe you would be better off just using RowLayouts without CardView.

    This would mean losing the ability to Compress a row, but it might work out better for you.

Reply Children