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
100
non-editable ultrawebgrid
posted

Hello,

I have an Ultrawebgrid diplaying some information over the internet. I want these information to be non-editable, that is i don't want to be able to change the cells of the grid with other values.

The ultrawebegrid does not have an 'Enabled' value or something like this that makes it read-only.Does anyone know how to do this in C#?

 

Thank you! 

Parents
No Data
Reply
  • 8680
    posted

    gtsak said:

    The ultrawebegrid does not have [...] something like this that makes it read-only.Does anyone know how to do this in C#?

    You should be able to accomplish that by setting the following properties to "false":

    MyGrid.DisplayLayout.AllowAddNewDefault
    MyGrid.DisplayLayout.AllowDeleteDefault
    MyGrid.DisplayLayout.AllowUpdateDefault

    Of course, I've only done that in VB.Net.  ;-)

Children