I have an UltraWebGrid within an WebSplitter and the grid overflows over the websplitter. I want it to stay within the websplitter and scroll. Has anyone else had this issue? How did you fix it.
Liz
Are you having this problem in Internet Explorer? If it works fine in Firefox and only has this issue in IE, then try setting the EnableRelativeLayout property of the Splitter pane to True. That should fix your problem.
-Jacob
I don't see that property. I am using Infragistics 2008 3.5. Where would that property be located?
It is a property of the Pane itself, so you need to open up the properties on the Splitter and go to the Panes collection. You should be able to open that collection (with a "..." button on the right side of the row), to edit each pane individually. You should find the property there.
I have this issue as well. The SplitterPane object does not have a property called 'EnableRelativeLayout'. I double-checked using the object browser just to be sure.
Is there another property that you might be thinking of?
-Lee
Ok, this property is a relatively recent addition, so you may need to get the latest hotfix. If that doesn't work for you (there is a slight possibility that this won't be out until the next hotfix release), you could also edit it through the JavaScript. Basically setting this property to true just changes the position attribute of the main div of the pane to relative, so if you wanted to do that manually you could.
Sorry about that confusion.
Thanks Rumen, that seems to have done the trick.
Until you get the version with the new property added, you can try the following
<ig:splitterpane style='position:relative' ..>
Position relative should address the overflow problem with most controls, grid included.
Hope this helps.
Liz or Lee,
Did Jacob's suggestion to apply the HotFix work? I am having the same problem and wanted to find out whether it is worth it to try.
Thanks