Hi,
I would like the RadSlidingZone of my project to be invisible when a certain SlidingPane ist expanded (and regain it's visibility when that SlidingPane collapses). I've tried the following code, but it doesn't seem to work:
Any suggestions on how to fix this would be of great help.
Thanks in advance,
Robin
I would like the RadSlidingZone of my project to be invisible when a certain SlidingPane ist expanded (and regain it's visibility when that SlidingPane collapses). I've tried the following code, but it doesn't seem to work:
function OnClientDock(sender, eventArgs) { var slidingZone = $find("<%=RadSlidingZone1.ClientID %>"); slidingZone.Width = "0px"; ;}function OnClientUndock(sender, eventArgs) { var slidingZone = $find("<%=RadSlidingZone1.ClientID %>"); slidingZone.Width = "22px";}<telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" DockedPaneID="RadSlidingPane1" > <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Title="SlidingPane" EnableResize="False" OnClientBeforeDock="OnClientDock" OnClientBeforeUndock="OnClientUndock"> [...] </telerik:RadSlidingPane></telerik:RadSlidingZone>Any suggestions on how to fix this would be of great help.
Thanks in advance,
Robin
