I am using jQuery Grid plugin(jQGrid) and i am wondering how could I achieve such behavior with jQGrid inline Edit Actions like on that sample http://www.trirand.net/aspnetmvc/grid/EditRowInlineActionIcons Currently i setup my jQGrid with pager with edit actions:
.navGrid('#pager', { view: false, edit: true, add: true, del: true, search: false });
but i want to have inline Edit Actions like in the sample above, may be some one did something like that.
Need help.
UPDATE:
I put the property editactioniconscolumn: true
but still din't get the Edit Actions
colNames: ['Id', 'FName', 'LName'],
colModel: [{ hidden: true, name: 'Id', index: 'Id', width: 50, align: 'left', editable: true },
{ name: 'FName', index: 'FName', width: 50, align: 'left', editable: true, editactioniconscolumn: true },
{ name: 'LName', index: 'LName', width: 50, align: 'left', editable: true, editactioniconscolumn: true }]