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.