I have requirement where all records(rows) needs to be loaded in non editable mode
but the first row. How do i do that?
thnx in advance.
Hello keinanj,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
If the above suggestion helped you solve your issue please verify the thread as answered so other users may take better advantage of it.
Thank you for your post. I have been looking through it and one possible way of achieving your goal is to add the following code in EditModeStarting event of your xamDatGrid, which will check which is the selected row and if it is not the first one, the event will be canceled.
if(xamDataGrid1.ActiveRecord.Index != 0) e.Cancel = true;
If you have any further questions on this matter do not hesitate to ask.