or
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
| if(e.Item is GridGroupFooterItem) |
| { |
| var Footer = (GridGroupFooterItem) e.Item; |
| var button = new Button(); |
| button.Click += Button1_Click; |
| button.ID = "btnNext"; |
| button.CausesValidation = false; |
| button.UseSubmitBehavior = true; |
| button.Text = "Next"; |
| Footer.Cells[5].Controls.Add(button); |
| } |

When someone clicks on a row in my grid, the header wiggles left, right, left. What is causing this? My users are complaining that it is very annoying and would like it to stop.
Your help would be appreciated, here are my client settings:
| <ClientSettings AllowColumnsReorder="True" AllowDragToGroup="True" AllowRowHide="True" EnablePostBackOnRowClick="False" ReorderColumnsOnClient="True"> |
| <Resizing AllowColumnResize="True" AllowRowResize="False" ResizeGridOnColumnResize="False" ClipCellContentOnResize="True" EnableRealTimeResize="False" /> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True" /> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |