Hi,
I create igGrid from javascript, but I want this igGrid have paging and updating.
I tried doing:
1.-
$("#grid1").igGrid({ autoGenerateColumns: true, dataSource: mivar, features: [{ name: ["Updating","Paging"], enableAddRow: true, editMode: "row", enableDeleteRow: true }] });
2.-
$("#grid1").igGrid({ autoGenerateColumns: true, dataSource: mivar, features: [{ name: "Updating", name: "Paging", enableAddRow: true, editMode: "row", enableDeleteRow: true }] });
In the first shape fails, and the second way makes only the second characteristic.How could I?Thanks in advance.
Best Regards
hi,
Already it is solved.I leave the solution in case anyone needs it.
$("#grid1").igGrid({ autoGenerateColumns: true, dataSource: mivar, updateUrl: "EditingSaveChanges", features: [{ name: "Updating", enableAddRow: true, editMode: "row", enableDeleteRow: true, },{ name: "Selection", mode: "row", multipleSelection: true, activation: true }, { name: "Paging" }], });