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

RadPane vertical Scrollbar is not working in fire fox

1 Answer 53 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
mayank
Top achievements
Rank 1
mayank asked on 22 Jan 2009, 04:52 AM
hello,

i have a radpane within a <div>.
and i am setting the height of <div> at run time.
it's working properly, but radpane is not setting it's height according to it's parent <div> by generating a vertical scrollbar.

as a result of not generating a scrollbar content of radpane is expanded outside of the <div>.
it's working successfully in IE but not in FF.

have you any solution for solve my prblem?
please tell me...

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 26 Jan 2009, 11:46 AM
Hi Mayank,
I tested you scenario with the following code, but the DIV showed a vertical scrollbar as expected:
<div id="splitterWrapper" runat="server"
    <telerik:RadSplitter ID="RadSplitter1" runat="server"
        <telerik:RadPane ID="RadPane1" runat="server"
        </telerik:RadPane> 
        <telerik:RadPane ID="RadPane2" runat="server"
        </telerik:RadPane> 
    </telerik:RadSplitter> 
</div> 

code-behind:
protected void Page_Load(object sender, EventArgs e) 
    if (!Page.IsPostBack) 
    { 
        this.splitterWrapper.Style[HtmlTextWriterStyle.Height] = "200px"
        this.splitterWrapper.Style[HtmlTextWriterStyle.Overflow] = "auto"
        this.splitterWrapper.Style[HtmlTextWriterStyle.BorderWidth] = "5px"
        this.splitterWrapper.Style[HtmlTextWriterStyle.BorderStyle] = "solid"
        this.splitterWrapper.Style[HtmlTextWriterStyle.BorderColor] = "red"
    } 

In case you send me a simple running project, demonstrating the problem you have, together with detailed information on the expected result, I will do my best to help you implement it.

Sincerely yours,
Tsvetie
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Splitter
Asked by
mayank
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or