hi, i have a grid that when i click on a row/cell it doesn't go into edit mode at all. what am i doing wrong? please execuse my newbie-ness. i'm a winforms guy trying to transition.
$("#exceptionGrid").igGrid({ width: "70%", dataSource: data, //Array of objects defined above autoGenerateColumns: true, features: [ { name: "Paging", type: "local", pageSize: 10 }, { name: "Sorting", type: "local" }, { editMode:"cell" , name : "Updating" } ] });
Hi Al,
Please look at the developer tools console of your browser whether there are any javascript errors? Is this your entire grid configuration or only part of it?
You should note, that Updating feature works properly along with primaryKey option set to the grid: http://help.infragistics.com/jQuery/2014.2/ui.iggrid#options:primaryKey
Here is a sample from our online samples for your reference: http://www.igniteui.com/grid/editing-api-events
If you have further questions, feel free to contact me.
Regards,
Tsanna
thank you Tsanna. that was the problem.
Al