Does anybody else have multiple tabs in their content dashboard for v4? Do they draw correctly the first time in. I have had these tabs here forever (http://www.flickr.com/photos/jhildeman/3735266425/). When I converted to v4 they were fine until I got the recent IE8 install. Now they stack up and just don't draw correctly. It seems to clear up when I click on the top level content node and openDashboard gets run.
I see this is both my custom site and a straight out-of-the-box Umb v4 site with Runway.
I had the same problem. Running in IE7 compatibility mode presented some other problems for me so I added the following to the umbraco/dashboard.aspx file.
It resizes the panel 100 milliseconds after the page has been loaded. Obvious a temporary solution but I am guessing there will be more focus on IE8 soon anyway.
Thanks everyone for the posts! You got me on the right track. I actually wound up with the following that seems to resolve the issue as well. I added at the bottom of the ready block that already exists in umbraco.aspx.
$(document).ready(function(){
// ...
// the stuff already found in Umbraco.aspx resizePage('load'); });
Umbv4 dashboard tabs drawn incorrectly in IE8
Does anybody else have multiple tabs in their content dashboard for v4? Do they draw correctly the first time in. I have had these tabs here forever (http://www.flickr.com/photos/jhildeman/3735266425/). When I converted to v4 they were fine until I got the recent IE8 install. Now they stack up and just don't draw correctly. It seems to clear up when I click on the top level content node and openDashboard gets run.
I see this is both my custom site and a straight out-of-the-box Umb v4 site with Runway.
I've seen this too. I don't worry about it, it only happens to me on the initial load of the page. All is ok after I click through the items.
Yup, I have the same problem in IE8. Just run it in IE7 compatibility mode and it works just fine.
Or just get a real browser, like Firefox.. ;-)
I had the same problem. Running in IE7 compatibility mode presented some other problems for me so I added the following to the umbraco/dashboard.aspx file.
It resizes the panel 100 milliseconds after the page has been loaded. Obvious a temporary solution but I am guessing there will be more focus on IE8 soon anyway.
Why don't you do that on document ready? Then you know for sure that the resize can be done :)
Hi Sebastian,
Actually
is just a shorter version of
http://docs.jquery.com/Events/ready
Anyway the resizePanel is already called once, but that is apparently not sufficient. The resizePanel takes the window dimensions to calculate the panel size. I googled the subject of jquery, iframes and onload events and there are some pitfalls http://www.nabble.com/%24%28-window.parent.document-%29.height%28%29-throws-error-from-child-iframe-to23439894s27240.html
With the above link i mind the following is a more accurate solution, but maybe a little too much for a layout issue of this size.
Thanks everyone for the posts! You got me on the right track. I actually wound up with the following that seems to resolve the issue as well. I added at the bottom of the ready block that already exists in umbraco.aspx.
Thanks James that was helpful.
cheers,
Iain
is working on a reply...