I'm using RadSplitter with radslidingpane. I have the following issue with these controls. I have attached screen of my issue. Plz provide the solution.
Thanks in advance
1 Answer, 1 is accepted
0
Dobromir
Telerik team
answered on 22 Oct 2010, 06:32 AM
Hi Robert,
RadSplitter does not offer the required functionality out of the box. However, you can achieve the required result by manually resizing the tab container and the sliding zone during the OnBeforeDock / OnBeforeUndock RadSlidingPane's client-side events, e.g.:
varslidingZone = $find('<%=RadSlidingZone1.ClientID %>'); //get reference to the sliding zone
sender.getTabContainer().style.width = "0px";
slidingZone.get_element().style.width = "0px";
}
functionOnClientBeforeUndock(sender, eventArgs)
{
varslidingZone = $find('<%=RadSlidingZone1.ClientID %>'); //get reference to the sliding zone
sender.getTabContainer().style.width = "22px";
slidingZone.get_element().style.width = "22px";
varparentPane = $find('<%=RadPane1.ClientID %>');
}
</script>
All the best,
Dobromir
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items