Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
Edit UltraGrid
posted

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

Parents
No Data
Reply
  • 299
    posted

    // Disable the first column in the first
    this.ultraGrid1.DisplayLayout.Columns[0].CellActivation = Activation.Disabled;

    // No Edit a Single Row

    ultraGrid1.Rows[ultraGrid1.Rows.Count - 1].Activation = Activation.NoEdit

Children