This isn't so much a RadControls question but I'm not sure if there is anything special in the RadGrid which will help here, and other RadGrid developers might find this helpful, so....
I have a huge grid that's about 1600px wide, and can contain around 1000 rows which the user does not want to page.
When displayed in the browser we get both horizontal and vertical scrolls for the browser.
To allow for a fixed header I have to assign a height to the grid. That height is 800px but needs to be smaller.
What's happening is that the user needs to scroll the browser to find the bottom of the grid, then browser horizontally to find the right margin of the grid, then scroll the grid vertically.
We have two sets of scrollbars, and that's just a pain.
1) I'm wondering if we can fix a grid header on a page without setting the height. The effect being that the browser scroll would reveal more rows but the grid header would float in-place. I doubt this is possible now but it might be a valid enhancement for RadGrid in the future.
2) (The real question here) What's the best way to give users easier access to a huge grid like this? I'm thinking about eliminating the scrollbars on the browser so that the user only sees the scrollbars on the grid. I would need to check the height of the browser visible area and adjust the grid height dynamically so that the grid horizontal scroll is always at the bottom.
3) Is there any way to scroll a grid horizontally or vertically with a mechanism other than the traditional hscroll and vscroll at the bottom and right of the control? What about floating scrollbars or a similar mechanism within the current window? I could put the grid in a smaller viewport, but the user wants to see as much data as possible (ergo no paging) and a huge number of columns rather than a hierarchical grid, a secondary grid, or popups.
4) Does anyone already have code to share for #2, to remove browser scrollbars and dynamically set the size of the grid? The problem here is that every browser is different - I'm hoping jQuery will help.
5) Any other ideas on elegant ways to render this amount of data?
Thanks!
I have a huge grid that's about 1600px wide, and can contain around 1000 rows which the user does not want to page.
When displayed in the browser we get both horizontal and vertical scrolls for the browser.
To allow for a fixed header I have to assign a height to the grid. That height is 800px but needs to be smaller.
What's happening is that the user needs to scroll the browser to find the bottom of the grid, then browser horizontally to find the right margin of the grid, then scroll the grid vertically.
We have two sets of scrollbars, and that's just a pain.
1) I'm wondering if we can fix a grid header on a page without setting the height. The effect being that the browser scroll would reveal more rows but the grid header would float in-place. I doubt this is possible now but it might be a valid enhancement for RadGrid in the future.
2) (The real question here) What's the best way to give users easier access to a huge grid like this? I'm thinking about eliminating the scrollbars on the browser so that the user only sees the scrollbars on the grid. I would need to check the height of the browser visible area and adjust the grid height dynamically so that the grid horizontal scroll is always at the bottom.
3) Is there any way to scroll a grid horizontally or vertically with a mechanism other than the traditional hscroll and vscroll at the bottom and right of the control? What about floating scrollbars or a similar mechanism within the current window? I could put the grid in a smaller viewport, but the user wants to see as much data as possible (ergo no paging) and a huge number of columns rather than a hierarchical grid, a secondary grid, or popups.
4) Does anyone already have code to share for #2, to remove browser scrollbars and dynamically set the size of the grid? The problem here is that every browser is different - I'm hoping jQuery will help.
5) Any other ideas on elegant ways to render this amount of data?
Thanks!