My grid has a size of 300px. When there are more than 10 records, a vertical scroll bar appears, which is fine. However, at the same time, a horizontal scroll bar also appears, which I do not want to display. My CSS class for vertical scrolling is:
.vstyle {
overflow-y:auto
}
If I use the following CSS class for horizontal scrolling:
.hstyle{
overflow-x:none
}
The horizontal scroll bar does not appear. But if I minimize the browser window, the horizontal scroll bar still does not appear due to the CSS. I need the horizontal scroll bar to be displayed even when the browser window is minimized. Any suggestions on how to achieve this would be helpful.