I have a page that has a splitter on it designed to occupy 100% of the browser's height and width.
This page works fine in FF2 and IE6 & 7.
With FF3 though, I occasionally get scrollbars in the browser; not in one pane or the other, but fort the whole browser window (like you might expect to see if you didn't put scroll="no" in the <body> tag in IE.
If I make small adjustments to the browser window side then they disappear and then come back with the next resize.
If it makes any difference, the left hand pane contains a Panelbar which is resized on the Splitter Pane's onClientLoaded and onClientResized events using the following ...
--
Stuart
This page works fine in FF2 and IE6 & 7.
With FF3 though, I occasionally get scrollbars in the browser; not in one pane or the other, but fort the whole browser window (like you might expect to see if you didn't put scroll="no" in the <body> tag in IE.
If I make small adjustments to the browser window side then they disappear and then come back with the next resize.
If it makes any difference, the left hand pane contains a Panelbar which is resized on the Splitter Pane's onClientLoaded and onClientResized events using the following ...
| function SetNavHeight(sender, args) { |
| setTimeout(function() { |
| var navPane = sender.getPaneById("NavPane"); |
| var containerHeight = navPane.get_height(); |
| var panelBar = $find("<%=pb.ClientID %>"); |
| panelBar.get_element().style.height = containerHeight + "px"; |
| panelBar.repaint(); |
| }, 200) |
| } |
--
Stuart