Hi,
I’m using JQGride(jquery 1.9.1) in my application, I want to add export to Excel functionality to my grid,
As I see from your article in “http://www.jqwidgets.com/jquery-grid-export-to-excel/” it can be done only in the server side
by using “jqxGrid”, I want to ask how can I implement this in my grid? I’m using this syntax when trigger something in the grid:
$(‘#ddTNGrid’).jqGrid(‘setGridParam’, { data: gridData }).trigger(“reloadGrid”);
grid definition:
caption: “”,
gridId:”ddTNGrid”,
colNames: [‘Please Select’, ‘TN’,”],
colModel: [
{name: ‘id’, index: ‘id’, align: ‘center’, hidden: true},
{name: ‘tn’, index: ‘tn’, align: ‘center’, sortable: true},
{name: ‘view’, index: ‘view’ ,formatter: this._viewTNList, align: ‘center’}
],
multiselect: options.multiselect,
cellEdit: false,
Thanks in advance