I have a grid that is being dynamically added to a page on a async postback.
With this grid, i am setting the following:
The problem I am having is that no vertical scrollbar is showing up when the columns I have added do not require horizontal scrolling. There is plenty of data however that would require vertical scrolling. If I cause the page to "repaint" at all, like resizing the window, the scrollbar will appear.
Do you have any suggestions on how I can get thsi scrollbar to appear correctly? I do not want to set the overflow-y to scroll because it is often that i dont need a scrollbar.
With this grid, i am setting the following:
_radDataGrid.ClientSettings.Scrolling.ScrollHeight =
Unit.Pixel(440);
_radDataGrid.Width =
Unit.Percentage(100);
The problem I am having is that no vertical scrollbar is showing up when the columns I have added do not require horizontal scrolling. There is plenty of data however that would require vertical scrolling. If I cause the page to "repaint" at all, like resizing the window, the scrollbar will appear.
Do you have any suggestions on how I can get thsi scrollbar to appear correctly? I do not want to set the overflow-y to scroll because it is often that i dont need a scrollbar.
Thanks!
Brandon
