This question is locked. New answers and comments are not allowed.
I have a GridView which is in Read Mode (_myGridView.IsReadOnly = true). After clicks "Edit" button, I programmatically change it to Edit mode. IE
_myGridView.IsReadOnly = false;
there are 2 problems here. Please help. Urgent!!!
Problem 1. User can edit any cell now,however, the cell value will change back to original value as soon as cell focus leaves to another cell.
Problem 2. If user clicks "Cancel" or "Save" button, I programmatically change it to Read mode. IE
_myGridView.IsReadOnly = true;
Starting from now on, the GridView is unable to be edited anymore no matter how I set _myGridView.IsReadOnly = false; or _myGridView.BeginEdit();
_myGridView.IsReadOnly = false;
there are 2 problems here. Please help. Urgent!!!
Problem 1. User can edit any cell now,however, the cell value will change back to original value as soon as cell focus leaves to another cell.
Problem 2. If user clicks "Cancel" or "Save" button, I programmatically change it to Read mode. IE
_myGridView.IsReadOnly = true;
Starting from now on, the GridView is unable to be edited anymore no matter how I set _myGridView.IsReadOnly = false; or _myGridView.BeginEdit();