我需要一次导出2个jqxgrids。我使用此代码导出单个网格。我一次无法获得导出2个网格的解决方案。
任何帮助都将受到高度赞赏.. :)`
$("#btnExport").click(function() {
var sel = $("#combofiletype").jqxComboBox('getSelectedIndex');
if (sel == 0) {
$("#jqxgrid").jqxGrid('exportdata', 'pdf', 'Filename', true, null, true);
} else if (sel == 1) {
$("#jqxgrid").jqxGrid('exportdata', 'xls', 'Filename', true, null, true);
} else if (sel == 2) {
$("#jqxgrid").jqxGrid('exportdata', 'csv', 'Filename', true, null, true);
} else if (sel == 3) {
$("#jqxgrid").jqxGrid('exportdata', 'html', 'Filename', true, null, true);
} else if (sel == 4) {
$("#jqxgrid").jqxGrid('exportdata', 'xml', 'Filename', true, null, true);
}
});