Some time back jfrost, Zarcom et al. discussed a technique whereby a datagrid could be scrolled in a scroll box instead of scrolling the entire page; a nice technique. The code is simply:
<div style="OVERFLOW: auto; HEIGHT: 500px">
<aspataGrid id="dgMyGrid"...
<Columns>
...
</Columns>
</aspataGrid>
</div>
..where the division tags take care of it. Now the question. To take this technique one step further, and to be a superior method over scrolling the entire html page for a datagrid, would be to combine this technique with "locking" the header column of the datagrid while the rows scrolled underneath it. In this way this technique would be much preferred over page scrolling, otherwise, there is not a great advantage to it.
No rush. Just thought I'd post the idea and put it out there.
<div style="OVERFLOW: auto; HEIGHT: 500px">
<aspataGrid id="dgMyGrid"...
<Columns>
...
</Columns>
</aspataGrid>
</div>
..where the division tags take care of it. Now the question. To take this technique one step further, and to be a superior method over scrolling the entire html page for a datagrid, would be to combine this technique with "locking" the header column of the datagrid while the rows scrolled underneath it. In this way this technique would be much preferred over page scrolling, otherwise, there is not a great advantage to it.
No rush. Just thought I'd post the idea and put it out there.