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!
gtsak said: The ultrawebegrid does not have [...] something like this that makes it read-only.Does anyone know how to do this in C#?
The ultrawebegrid does not have [...] something like this that makes it read-only.Does anyone know how to do this in C#?
MyGrid.DisplayLayout.AllowAddNewDefaultMyGrid.DisplayLayout.AllowDeleteDefaultMyGrid.DisplayLayout.AllowUpdateDefault
Of course, I've only done that in VB.Net. ;-)
This is not exactly what i am searching for...i want to do it with code in server side, because in my project i have a situation where the grid is editable but if you finish what you are doing, you save the grid and then automatically it must become non-editable. So i need something to control it from server side, so when save the grid to become inactive.
Any idea according to this?