DataGrid

  • Thread starter Thread starter Dmitri Shvetsov
  • Start date Start date
D

Dmitri Shvetsov

Hi,

Did somebody hear is it possible to scroll a very long DataGrid on the
WebForm in a separate subwindow or somehow else? I have a very long DataGrid
but I don't want to break it into many different pages using a paginating
feature. It seems better to me to scroll it keeping the header of the main
form at the place. Did somebody do that?

Thanks,
Dmitri
 
wrap the datagrid in a div tag. set the overflow attribute to overflow. size
the div to the length you want on the page and the grid will automatically
force scroll bars in the div when it begins to extend.
 
Hi Alvin,

Thanks a lot, using your help I found this link and this almost solved my
problem. I'm tryint to position my grid now.

http://www.datawebcontrols.com/faqs/CustomizingAppearance/ScrollableDataGrid.shtml

Regards,
Dmitri

Alvin Bruney said:
wrap the datagrid in a div tag. set the overflow attribute to overflow. size
the div to the length you want on the page and the grid will automatically
force scroll bars in the div when it begins to extend.

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
Dmitri Shvetsov said:
Hi,

Did somebody hear is it possible to scroll a very long DataGrid on the
WebForm in a separate subwindow or somehow else? I have a very long DataGrid
but I don't want to break it into many different pages using a paginating
feature. It seems better to me to scroll it keeping the header of the main
form at the place. Did somebody do that?

Thanks,
Dmitri
 
Back
Top