有人知道将数据从jqgrid导出到excel的方法吗?
我想使用这个jqgrid做一个我觉得很棒的报告。但我需要以某种方式保存或打印此报告,因为需要保留信息。 有人知道吗??
答案 0 :(得分:11)
这是我的方法,只需将此代码添加到您的js / html文件
$("#list").jqGrid('navGrid', '#pager',{view:true, del:false, add:false, edit:false, excel:true})
.navButtonAdd('#pager',{
caption:"Export to Excel",
buttonicon:"ui-icon-save",
onClickButton: function(){
exportExcel();
},
position:"last"
});
function exportExcel()
{
var mya=new Array();
mya=$("#list").getDataIDs(); // Get All IDs
var data=$("#list").getRowData(mya[0]); // Get First row to get the labels
var colNames=new Array();
var ii=0;
for (var i in data){colNames[ii++]=i;} // capture col names
var html="";
for(i=0;i<mya.length;i++)
{
data=$("#list").getRowData(mya[i]); // get each row
for(j=0;j<colNames.length;j++)
{
html=html+data[colNames[j]]+"\t"; // output each column as tab delimited
}
html=html+"\n"; // output each row with end of line
}
html=html+"\n"; // end of line at the end
document.forms[0].csvBuffer.value=html;
document.forms[0].method='POST';
document.forms[0].action='csvExport.php'; // send it to server which will open this contents in excel file
document.forms[0].target='_blank';
document.forms[0].submit();
}
PHP脚本
header('Content-type: application/vnd.ms-excel');
header("Content-Disposition: attachment; filename=file.xls");
header("Pragma: no-cache");
$buffer = $_POST['csvBuffer'];
try{
echo $buffer;
}catch(Exception $e){
}
答案 1 :(得分:3)
非常好的问题,我也对此感到头疼。 我是通过选择菲利克斯的建议来做到的,让我通过添加以下几行来完成它 html body。
<form method="post" action="csvExport.php">
<input type="hidden" name="csvBuffer" id="csvBuffer" value="" />
</form>
我唯一的问题是导出的excel文件不包括我在jqgrid中的列名,还有一种方法可以在导出到excel文件时排除特定或多个列吗?
谢谢〜答案 2 :(得分:2)
功能强大!
我做了改变。
function exportExcel($id){ var keys=[], ii=0, rows=""; var ids=$id.getDataIDs(); // Get All IDs var row=$id.getRowData(ids[0]); // Get First row to get the labels for (var k in row) { keys[ii++]=k; // capture col names rows=rows+k+"\t"; // output each Column as tab delimited } rows=rows+"\n"; // Output header with end of line for(i=0;i<ids.length;i++) { row=$id.getRowData(ids[i]); // get each row for(j=0;j<keys.length;j++) rows=rows+row[keys[j]]+"\t"; // output each Row as tab delimited rows=rows+"\n"; // output each row with end of line } rows=rows+"\n"; // end of line at the end var form = "<form name='csvexportform' action='"+php_path+"csvexport.php' method='post'>"; form = form + "<input type='hidden' name='csvBuffer' value='"+rows+"'>"; form = form + "</form><script>document.csvexportform.submit();</sc"+"ript>"; OpenWindow=window.open('', ''); OpenWindow.document.write(form); OpenWindow.document.close(); } function gridcsvexport(id) { $('#'+id).jqGrid('navButtonAdd','#'+id+'_pager',{ caption:'', title:'export', buttonicon:'ui-icon-newwin', position:'last', onClickButton:function (){ exportExcel($(this)); } }); }
答案 3 :(得分:1)
我解决了您的问题。现在我可以使用列名导出数据excel,请参阅我的代码。
function exportExcel()
{
var mya=new Array();
mya=$("#tblnoupdate").getDataIDs(); // Get All IDs
var data=$("#tblnoupdate").getRowData(mya[0]); // Get First row to get the labels
var colNames=new Array();
var ii=0;
for (var i in data){colNames[ii++]=i;} // capture col names
var html="";
for(k=0;k<colNames.length;k++)
{
html=html+colNames[k]+"\t"; // output each Column as tab delimited
}
html=html+"\n"; // Output header with end of line
for(i=0;i<mya.length;i++)
{
data=$("#tblnoupdate").getRowData(mya[i]); // get each row
for(j=0;j<colNames.length;j++)
{
html=html+data[colNames[j]]+"\t"; // output each Row as tab delimited
}
html=html+"\n"; // output each row with end of line
}
html=html+"\n"; // end of line at the end
document.forms[0].csvBuffer.value=html;
document.forms[0].method='POST';
document.forms[0].action='<?php echo $baseurl;?>csvexport.php'; // send it to server which will open this contents in excel file
document.forms[0].target='_blank';
document.forms[0].submit();
}
如果您遇到任何问题,请告诉我。
答案 4 :(得分:1)
这是一个聪明的解决方案,可以将jqGrid
数据保存为excel表,而无需调用php
脚本:(您只需要使用GridID
和可选{{1}调用此函数}})
Filename
我们首先创建一个用var createExcelFromGrid = function(gridID,filename) {
var grid = $('#' + gridID);
var rowIDList = grid.getDataIDs();
var row = grid.getRowData(rowIDList[0]);
var colNames = [];
var i = 0;
for(var cName in row) {
colNames[i++] = cName; // Capture Column Names
}
var html = "";
for(var j=0;j<rowIDList.length;j++) {
row = grid.getRowData(rowIDList[j]); // Get Each Row
for(var i = 0 ; i<colNames.length ; i++ ) {
html += row[colNames[i]] + ';'; // Create a CSV delimited with ;
}
html += '\n';
}
html += '\n';
var a = document.createElement('a');
a.id = 'ExcelDL';
a.href = 'data:application/vnd.ms-excel,' + html;
a.download = filename ? filename + ".xls" : 'DataList.xls';
document.body.appendChild(a);
a.click(); // Downloads the excel document
document.getElementById('ExcelDL').remove();
}
分隔的CSV
字符串。然后使用某些属性创建;
标记。最后在anchor
上调用click
来下载文件。
您可以查看几种excel MIME类型:MIME Type List
答案 5 :(得分:0)
创建一个名为“csvBuffer”的表单和隐藏元素。该元素由函数设置。 我不得不改变这条线
html = html+"\n"
到
html = html+"\\n"
为了正确逃脱它。