Is there any easy way to perform cut/copy/paste operations of UltraGridRows in Grids? I know it has built-in functions for Cells but how about rows.
Let me know.
Let me paste the code from my initialize layout of the grid.
e.Layout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True e.Layout.Override.RowSelectorStyle = HeaderStyle.Default e.Layout.Override.CellClickAction = CellClickAction.RowSelect
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All
Let me know
AllowMultiCellOperation covers both cells and rows. The settings apply to both.
If you can't get it to work for rows, then it sounds like maybe your grid is not set up to allow row selection. Do you have the RowSelectors turned on? Is SelectTypeRow allowing row selection? What about CellClickAction?
AllowMultiCellProperty has everything relating to cells but not withrespect to rows.
Yes, check out the AllowMultiCellOperation property on the Override.