HiI am using iggrid edit dialog
datagrid = { width: "99%", height:"600px", primaryKey: "RowKey", columns: GridColumnData, dataSource: GridData, autoCommit: true, autoGenerateColumns: false, autofitLastColumn: false, features: [ { name: "Paging", type: "local", pageSize: 10, pageSizeList: [10, 20, 25, 50, 75, 100], pageSizeDropDownLocation: "inpager" }, { name: "Sorting", type: "local" }, { name: "Resizing" }, { name: "Updating", editMode: "dialog", enableAddRow: false, enableDeleteRow: false, columnSettings: [ { columnKey: "RowKey", readyOnly: true, editorOptions: { type: "string", disabled: true} }, { columnKey: "Command", readyOnly: true, editorOptions: { type: "string", disabled: true} }, { columnKey: "LastScheduledExecutionDateTime", readyOnly: true, editorOptions: { type: "string", disabled: true} } ] } ] } $("#iggrid").igGrid(datagrid); $(document).delegate("#iggrid", "iggridupdatingeditrowended", function (evt, ui) { if (ui.update) { --- update AJAX code --- } });
1. I change the value and press enter in first time the values is change the grid only not updated/call ajax function.
2. Then again i change the value and click Done button the ajax call and values updated
3. I am not refresh the page at the same time i change the value again i press enter it works Any one please help me. At the first time i am not able to update using press enter.When i open edit dialog click cancel it comes in delegate function not comes in ui.update function then again open dialog change value press enter it works.Thanks in Advance
Robin Bronston D
Hello Martin,Yes i have change the version the enter key to submit is working ThanksRobin Bronston D
Hello Robin,
There's an issue in this build that is not triggering the editRowEnded event the first time a row is edited. The issue is fixed in build: 15.2.20152.2235. Try updating to it or to the newest 15.2 Service Release which is 15.2.20152.2323.
Best regards,Martin PavlovInfragistics, Inc.
Hello Martin,
i am using 15.2.20152.2081 versionthanks
Can you tell me your Ignite UI version.
To check your version execute the following code in the browser's console:
$.ui.igGrid.version
Thanks in advance,Martin PavlovInfragistics, Inc.
Hello Martin ,
Yes at the first time i edit a row and press Enter ui.update is falsewhen i click cancel button or close icon the dialog is closed.Again i edit the row and press enter ui.update is true.Note : i am using tile manager when i click the tile the grid is loaded.
Thanks