Here is my requirement.
I have a Modify button, when we select a row in gird and cliks on modify , i want that selected row in edit mode. how can i achieve that.
I am trying this options, no luck
this.uGrid.ActiveRow.Activation = Activation.AllowEdit;
this.uGrid.ActiveCell.Activation = Activation.AllowEdit;
Varmajp-
The following options could be placed in your click event:
//Put Cell In Edit Modethis.dg.DisplayLayout.Bands[0].Columns[18].CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.Edit;
//Put Cell In Edit Mode & Select Textthis.dg.DisplayLayout.Bands[0].Columns[18].CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
If you wanted to turn it back off (after editing) you could do the following
//Turn Back To Row Selectthis.dg.DisplayLayout.Bands[0].Columns[18].CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
-Ian