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
// 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
{
column.CellActivation = Activation.NoEdit;
}
I Thinks this helps u..