Hi,
If I wants to hide for example the delete button on a row I can do that in the databound event but it would be nice if there were a property or a couple of properties for it.
It would be easier and cleaner to write something like:
This just went through my head, maybe there is something like it already implemented?! :)
/Mattias
If I wants to hide for example the delete button on a row I can do that in the databound event but it would be nice if there were a property or a couple of properties for it.
It would be easier and cleaner to write something like:
| RadGrid1.EnableAddNewRow = false; |
| RadGrid1.EnableUpdateRow = false; |
| RadGrid1.EnableDeleteRow = false; |
| Or some combination like |
| RadGrid1.EnableEditing = false; |
This just went through my head, maybe there is something like it already implemented?! :)
/Mattias