Hello Dear
Im trying to get the grid work with a scrollable container, but I don't get it work with a sample grid. I'm trying to let a Div scroll - containing the grid - .
my Div style is something like this;
<div style="overflow:scroll;width:400px;height:400px">
/* here comes the grid */
</div>
But this does not work (the grid is always rendered "above" the Div and overlays it in the browser). Im using IG Version: 8.3.20083.2059. Need it to work in IE 6 and IE 7.
Can you tell me what I have to do with the UltraWebgrid so it is fitting into its scrollabe-container?
Thanks in advance
No Idea?
Hi,
Try adding position:absolute; in style of div as follow.
<div style="overflow:auto; width:400px;height:200px; border:solid 2px black; position:absolute; ">
Let me know if this works for you.
This did work, thank you for the tip. It also seems to work with position:relative.