When XamGrid is bound a datasource of editable collection and enable editing setting, double clicked on the cells, user is able to edit data in cell.
I bound XamGrid to IEnumerable<T>. The data can be displayed XamGrid.
Then I put editing setting for this XamGrid as:
<ig:XamGrid.EditingSettings> <ig:EditingSettings IsMouseActionEditingEnabled="DoubleClick" IsEnterKeyEditingEnabled="True" IsF2EditingEnabled="True" IsOnCellActiveEditingEnabled="False" /> </ig:XamGrid.EditingSettings>
Then run the app and double click on any cell, I can't go to Editable mode and edit data in xamGrid.
Here I only want to use XamGrid Editing function to allow user change the data in UI, then I get the Data in code and do something my own business logic tasks.
How to resolve this problem? Should I change IEnumerable<T> to ObservableCollection<T>?
Did you miss AllowEditing?
<ig:EditingSettings
AllowEditing="Row"...
>