I have a number of Cell Proxy's on a RowEditTemplate. Under certain conditions I'd like to disable edit or "Lock Down" those cell proxy's to prevent the user from editing the values. What is the best method of doing this?
The proxies simply host the the editor of the corresponding cell, so you would still use the grid event. In this case, you could cancel the BeforeEnterEditMode event of the grid.
-Matt
Thank you for your response. In the grid designer is there a property that can be set on a column that would prevent editing even though source column of the dataset of the grid is not flagged as read only?
Hopefully setting setting some property of the column would prevent the user from changing the value via the cell proxy.