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
180
Vertical Scrollbar when in CardView.
posted

Hello,

I would like to know if there is a way to have vertical scrollbar when in CardView, or at least a workaround to simulate it.This is my situation: 
  • My grid is in card view
  • band.CardView = true;
  • All the cards are compressed at the beginning
  • band.CardSettings.Style = CardStyle.Compressed;
  • Show only one column of cards, at the beginning is a column full of compressed cards
  • band.CardSettings.MaxCardAreaCols = 1;
  • I don’t want to scroll horizontally. I want that when I expand a card, if they don’t fit, a vertical scrollbar appears. It is the natural way; the user would think that, as the column is expanded, what doesn’t feet is bellow, and it is only needed to scroll down.
  • band.CardSettings.CardScrollbars = CardScrollbars.None;
  • There is no vertical scrollbar, so I selected None to avoid the horizontal one, what I want is to have a vertical scrollbar, please, help me with a solution or, at least, to find a workaround.