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
1375
Cell Editing not Finishing when loses focus
posted

I have four grids doing cell editing. One of the Grids seems to 'Hang' after editing a cell.  The typical behavoir of the 3 grids the work 'properly' are if you edit a cell and then go click a button or dropdown with out tabing off the cell it still comits.  However, the one page when i select something else on the page with out tabing off just seems to hang in edit mode. 

 the only difference i notice is that some of the editing i am doing is in the Childband and on the page with issues it is in the main row

here is the settings i am using for ref:

WORKS:

<igGrid:ColumnLayout.EditingSettings>
                        <igGrid:EditingSettingsOverride AllowEditing="Cell"
                                                        IsMouseActionEditingEnabled="SingleClick"
                                                        IsOnCellActiveEditingEnabled="true"/>
                    </igGrid:ColumnLayout.EditingSettings>

            <igGrid:XamWebGrid.SelectionSettings>
                <igGrid:SelectionSettings CellSelection="None"
                                          CellClickAction="SelectRow"
                                          RowSelection="Single"></igGrid:SelectionSettings>
            </igGrid:XamWebGrid.SelectionSettings>

DOES NOT WORK
<igGrid:XamWebGrid.EditingSettings>
                <igGrid:EditingSettings AllowEditing="Cell"
                                        IsMouseActionEditingEnabled="SingleClick"
                                        IsOnCellActiveEditingEnabled="true"></igGrid:EditingSettings>
            </igGrid:XamWebGrid.EditingSettings>

            <igGrid:XamWebGrid.SelectionSettings>
                <igGrid:SelectionSettings CellSelection="None"
                                          CellClickAction="SelectRow"
                                          RowSelection="Single"></igGrid:SelectionSettings>
            </igGrid:XamWebGrid.SelectionSettings>

Parents Reply Children
No Data