I have a horizontal splitter with a top pane and a bottom pane. Normally I can slide the splitBar up and down. However, if I have a binary component in one of the panes, I cannot slide the splitBar over it. Please try the simplified sample code below, and please help me find a solution. I have been trying to figure this one out for some time.
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
</telerik:RadScriptManager> |
<telerik:RadSplitter ID="splitter1" Orientation="Horizontal" Width="100%" Height="100%" runat="server"> |
<telerik:RadPane ID="paneTop" runat="server" Width="100%" Height="300px" ContentUrl="http://www.yahoo.com"> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="splitBar1" runat="server" /> |
<telerik:RadPane ID="paneBottom" runat="server" Width="100%" Height="100%" ContentUrl="RadGridExport.pdf"> |
</telerik:RadPane> |
</telerik:RadSplitter> |