Hi
I am trying to fire the dock.Command event put it is not working.
I am building the docklayout zones and docks dynamically.... The docklayout is being placed inside a update panel.
I am using this code to create the docks....
I am trying to fire the dock.Command event put it is not working.
I am building the docklayout zones and docks dynamically.... The docklayout is being placed inside a update panel.
I am using this code to create the docks....
RadDock dock = new RadDock();
dock.ID =
"DockID_" + ControlID.ToString();
dock.Title = ControlName;
dock.AutoPostBack =
true;
dock.Commands.Add(
new DockCloseCommand());
dock.DockPositionChanged +=
new DockPositionChangedEventHandler(dock_DockPositionChanged);
dock.Command +=
new DockCommandEventHandler(dock_Command);
dock.OnClientDragStart =
"StartDrag";
dock.OnClientDockPositionChanged =
"EndDrag";
The dock_Command event never fires. Any ideas ?
Cheers