Hi,
Is it possible to have a grid that is not in a frame? I would like my grid to just use the whole page... how do I do this?
I'm not sure what you mean by a "frame", unless you mean the DIV element that the grid uses to set up its scrollbars.
To have the grid use the whole area of its parent container, set its Width and Height properties both to 100%; if you're doing this in code, use Unit.Percentage(100).
Thanks for your response. Yes, I guess I mean the div element that contains the grid.. I would like those scrollbars to disappear and the grid to use the whole page so there's no scrollbars within the page, just the scrollbars on the edges of the browser. I've now set the width and height of the grid to 100%:
<div> <igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Width="100%" Height="100%">
...
but the grid is still displayed with scrollbars within the page. They shouldn't be if I am understanding you correctly?