This is a migrated thread and some comments may be shown as answers.

RadSplitter 100% Width + Height in Internet Explorer 8 - IE8

9 Answers 265 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 20 Jan 2009, 03:12 PM
Hi Guys,

I'm sure you are probably aware of this but thought I would drop you a line about it anway.

I downloaded IE8 today to have a quick play around with it and have noticed that in my projects where I have a RadSplitter set to 100% Width and 100% Height, they do not resize when I resize the browser window.

They work find in IE7/Firefox/Chrome etc, but not in IE8.  This might be a bug in IE8 being as its still in Beta but thought you might want to take a look anyway.

Let me know if you need any more info.

Thanks

Mike

9 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 21 Jan 2009, 04:15 PM
Hello Michael,

Thank you for reporting this problem, we will keep it in mind. We were able to reproduce the problem in one of our online demos but with the very same code and configuration we could not replicate the problem locally. We believe that this is because of IE8 still being Beta - when it is officially released we will investigate the matter further.

Thank you again for your cooperation, it is highly appreciated.

All the best,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Officialboss
Top achievements
Rank 1
answered on 22 Jan 2009, 07:37 PM
Mike, can you please post your code of the splitter and any css to show how you have made it work with 100% width and height in FF.
Thanks
0
Greg
Top achievements
Rank 1
answered on 03 Feb 2009, 08:23 AM
The reason you could not reproduce the problem locally is because IE8 defaults to Compatibility View on localhost.

Go to Tools > Compatibility View Settings and uncheck "Display intranet sites in Compatibility View'.
0
Svetlina Anati
Telerik team
answered on 03 Feb 2009, 01:44 PM
Hi Greg,

Thank you for your report, we will consider this when working and extensively testing the RadSplitter under IE8. However, since this browser is still not officially released, we do not plan to change the RadControls code according to it and we are logging possible problems for future consideration.

Thank you again for your cooperation, it is highly appreciated and we will be glad to have it in the future, too!

Best wishes,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Gokul
Top achievements
Rank 1
answered on 15 Jun 2009, 11:29 PM
Do you have a solution to this problem?

Thanks,
Gokul
0
Klaas Hulder
Top achievements
Rank 1
answered on 16 Jun 2009, 11:11 AM
We have the same issue. Are you already working on this?

Thanks
Klaas.
0
Gokul
Top achievements
Rank 1
answered on 16 Jun 2009, 11:44 AM
Luckily found a solution to this problem.
The idea is that all the parent elements to the radsplitter should have the height or width set to 100%. I had the problem with height and I fixed with the code below. Hope this snippet should work for width also. 
use this css settings in your aspx page

<style type="text/css">
        html, body, form    
    {    
        height: 100%;    
        width: 100%; 
        margin: 0px;    
        padding: 0px;    
        overflow: hidden;    
    }  
</script>


HTH
Gokul
0
Klaas Hulder
Top achievements
Rank 1
answered on 16 Jun 2009, 12:30 PM
Gokul,

This works fine for height but not for width.

Thanks for the reply anyway.

Klaas
0
Gokul
Top achievements
Rank 1
answered on 16 Jun 2009, 01:21 PM
Hi Klaas,
The below is how I am using RadSplitter. With the settings mentioned I am able to get 100% width in IE8 during resize as well as the height issue is resolved after adding the CSS fix I mentioned in my previous post.

Thanks,
Gokul


  <radspl:RadSplitter id="RadSplitter1" runat="server" height="90%" Width="100%">
                <radspl:RadPane id="LeftPane" runat="server" width="50%">
                        <table style="width: 100%;">....</table>
 </radspl:RadPane>
                <radspl:RadSplitBar id="RadSplitbar1" runat="server"/>

                <radspl:RadPane id="RightPane" runat="server" width="50%">
                    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                </radspl:RadPane>
            </radspl:RadSplitter>
Tags
Splitter
Asked by
Michael
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Officialboss
Top achievements
Rank 1
Greg
Top achievements
Rank 1
Gokul
Top achievements
Rank 1
Klaas Hulder
Top achievements
Rank 1
Share this question
or