Hi
I have taken over maintenance of a legacy app which uses an editable ultragrid.
I want to make the grid uneditable but am unsure how to do this for the entire grid
Thanks for any help
{
column.CellActivation = Activation.NoEdit;
}
I Thinks this helps u..
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?
grid.DisplayLayout.Override.AllowDelete = DefaultableBoolean.False;
grid.DisplayLayout.Override.AllowUpdate = DefaultableBoolean.False;
// Disable the first column in the firstthis.ultraGrid1.DisplayLayout.Columns[0].CellActivation = Activation.Disabled;
// No Edit a Single Row
ultraGrid1.Rows[ultraGrid1.Rows.Count - 1].Activation = Activation.NoEdit