or
Hi to all,
how is it possible to hide the "to" Label of the Advanced Edit Form (the label after which there is the RadDatePicker for the EndDate) ?
I've tried all the possible Id in the RadScheduler1_FormCreated function, like:
WebControl cont = (WebControl)e.Container.FindControl("????????");
without success.
What is its ID ?
Thanks you very much in advance.
Regards,
Sergio
| <script type="text/javascript"> |
| function SetHandleDock(dock, args) { |
| dock.set_handle(document.getElementById(dock.get_id())); |
| } |
| var dockZoneID; |
| function checkMaximumDock(dock) { |
| var selectionZone = $find('<%= radDockZone.ClientID %>'); |
| var newDockZoneID = dock.get_dockZoneID(); |
| //if the dock is floated or dropped in the selection zone return |
| if (newDockZoneID == '' || selectionZone.get_clientID() == newDockZoneID) return; |
| if (dockZoneID != newDockZoneID) { |
| var dockZone = $find(newDockZoneID); |
| var docks = dockZone.get_docks(); |
| if (docks.length > 1) { |
| var oldDock = docks[0]; |
| oldDock.undock(); |
| selectionZone.dock(oldDock); |
| dockZone.dock(dock); |
| } |
| } |
| } |
| function OnClientDragStart(dock) { |
| dockZoneID = dock.get_dockZoneID(); |
| } |
| </script> |
| radDock.OnClientDragEnd = "checkMaximumDock"; |
| radDock.OnClientDragStart = "OnClientDragStart"; |
