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
235
Scroll bar problem in UltraWinGrid, Card Scroll Problem
posted

I have UltraWinGrid divided into 2 cards.

First card contains 10 columns and is displaying correctly with the scroll bars. In second card I have 18 columns and is merged with first card in such a way that card 1 rows are displayed with card 0 rows (not using collapse and expand, this was the requirement). Below is the code for Band(1)

 ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- -------

 With e.Layout.Bands(1)

.Indentation = 0

.CardView = True

.CardSettings.MaxCardAreaCols = 50

.CardSettings.ShowCaption = False

.CardSettings.Style = CardStyle.StandardLabels

.CardSettings.CardScrollbars = CardScrollbars.None

.ColHeadersVisible = False

''Column style

.Override.HeaderAppearance.BackColor = Color.YellowGreen

.Override.CellAppearance.BackColor = Color.YellowGreen

 ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- -------

The problem is that while scrolling the grid all columns of card 0 are available but only a few columns from card 1 are visible (first 8). I can scroll to only first 8 columns using scroll bar. Whereas while using keyboard arrow keys I can scroll to all 18 columns. I am using VS2008 with VB.Net windows application.

Any help would be greatly appreciated.

Thanks in advance,

Ashish Sharma

Parents Reply Children