Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4970
How to enable xamGrid editing?
posted

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>?

Parents
No Data
Reply Children
No Data