Regarding the Gridview..
-
Hello All, I am dynamically adding the columns and rows to the gridview control. It is getting populated correctly, my problem here is i am not getting the horizontal scroll bar within the gridview. How to add horizontal scrol bar to the griedview control, so that it will not affect the other controls on the page. Thanks in advance.
Bharath.S Ron
-
Hello All, I am dynamically adding the columns and rows to the gridview control. It is getting populated correctly, my problem here is i am not getting the horizontal scroll bar within the gridview. How to add horizontal scrol bar to the griedview control, so that it will not affect the other controls on the page. Thanks in advance.
Bharath.S Ron
It seems Gridview won't support horizondal scrolling. You need to place gridview inside DIV element and apply styles for DIV to show scrollbar.
<DIV style="OVERFLOW: auto; WIDTH: YourWidth; HEIGHT: YourHeight">
If your gridview width exceeds specified width, it will show scrollbar. I Don't know cross browser compatibility of this method.:cool:
-
It seems Gridview won't support horizondal scrolling. You need to place gridview inside DIV element and apply styles for DIV to show scrollbar.
<DIV style="OVERFLOW: auto; WIDTH: YourWidth; HEIGHT: YourHeight">
If your gridview width exceeds specified width, it will show scrollbar. I Don't know cross browser compatibility of this method.:cool: