I am using the following to automatically dock certain panes:
In FireFox the "pin" icon shows the pane as "pinned". In IE, the pin is not visible and you cannot close the pane.
Any ideas?
Thanks
-Brent
| function beforeExpand(sender,eventArgs) |
| { |
| var slidingZone = $find("<%= RadSlidingZone1.ClientID %>"); |
| slidingZone.dockPane(sender.get_id()); |
| eventArgs.set_cancel(true); |
| } |
| <telerik:RadSlidingPane ID="RadSlidingPane4" runat="server" Title="Test" Width="100%" Scrolling="None" Height="405" OnClientBeforeExpand="beforeExpand" > |
In FireFox the "pin" icon shows the pane as "pinned". In IE, the pin is not visible and you cannot close the pane.
Any ideas?
Thanks
-Brent