我是jQuery / jQgrid编码的新手。我使用的是jQgrid版本是4.4.4& jQuery 1.8.3。我想在我的jQgrid中启用导出到PDF / EXCEL功能。为此我提到了以下链接 - Click Here和Click Here。在这个链接的基础上,我在jquery中开发了几行代码,如下所示:
.jqGrid('navGrid', topPagerSelector, { edit: false, add: false, del: false, search: false, pdf: true}, {}, {}, {}, {}
}).jqGrid('navButtonAdd',topPagerSelector,{
id:'ExportToPDF',
caption:'',
title:'Export To Pdf',
onClickButton : function(e)
{
try {
$("#tbPOIL").jqGrid('excelExport', { tag: 'pdf', url: sRelativePath + '/rpt/poil.aspx' });
} catch (e) {
window.location = sRelativePath + '/rpt/poil.aspx&oper=pdf';
}
},
buttonicon: 'ui-icon-print'
});
但是此代码无法正常运行。我在网上谷歌搜索了很多,但我没有得到有用的&相关信息,以实现我的任务。有谁知道怎么做?
更新:我没有使用jqgrid的付费版本。
答案 0 :(得分:6)
以下是将jqGrid
数据另存为Excel工作表的聪明解决方案:(您只需使用GridID
和可选的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
上调用a
来下载文件。
答案 1 :(得分:5)
在你的onclick事件中调用的函数。
function exportGrid(){
mya = $("#" + table).getDataIDs(); // Get All IDs
var data = $("#" + table).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 = "<html><head>"
+ "<style script="css/text">"
+ "table.tableList_1 th {border:1px solid black; text-align:center; "
+ "vertical-align: middle; padding:5px;}"
+ "table.tableList_1 td {border:1px solid black; text-align: left; vertical-align: top; padding:5px;}"
+ "</style>"
+ "</head>"
+ "<body style="page:land;">";
for ( var k = 0; k < colNames.length; k++) {
html = html + "<th>" + colNames[k] + "</th>";
}
html = html + "</tr>"; // Output header with end of line
for (i = 0; i < mya.length; i++) {
html = html + "<tr>";
data = $("#" + table).getRowData(mya[i]); // get each row
for ( var j = 0; j < colNames.length; j++) {
html = html + "<td>" + data[colNames[j]] + "</td>"; // output each Row as
// tab delimited
}
html = html + "</tr>"; // output each row with end of line
}
html = html + "</table></body></html>"; // end of line at the end
alert(html);
html = html.replace(/'/g, ''');
// var form = "<form name='pdfexportform' action='generategrid' method='post'>";
// form = form + "<input type='hidden' name='pdfBuffer' value='" + html + "'>";
// form = form + "</form><script>document.pdfexportform.submit();</sc"
// + "ript>";
// OpenWindow = window.open('', '');
// OpenWindow.document.write(form);
// OpenWindow.document.close();
}
答案 2 :(得分:5)
如果您使用的是PHP,请尝试phpGrid。然后你只需要打电话
$dg->enable_export('PDF'); // for excel: $dg->enable_export('EXCEL');
结帐http://phpgrid.com/example/export-datagrid-to-excel-or-html。它生成渲染网格所需的jqGrid javascript。
答案 3 :(得分:-2)
if (exportexcel.Equals(excel) )
{
GridView view = new GridView();
string conn = @"Server=localhost;port=3306;Database=jtext;Uid=root;Password=techsoft";
IFormatProvider culture = new System.Globalization.CultureInfo("fr-Fr", true);
MySqlConnection con = new MySqlConnection(conn);
con.Open();
MySqlCommand cmd = new MySqlCommand(query, con);
MySqlDataAdapter adp = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
adp.Fill(ds);
view.DataSource = ds;
view.DataBind();
con.Close();
HttpContext Context = HttpContext.Current;
context.Response.Write(Environment.NewLine);
context.Response.Write(Environment.NewLine);
context.Response.Write(Environment.NewLine);
DateTime ss = DateTime.Now;
string custom = ss.ToString("dd-MM-yyyy");
string sss = DateTime.Now.ToString("HH:mm:ss", System.Globalization.DateTimeFormatInfo.InvariantInfo);
string aaa = "Generated Date and Time : " + custom + " " + sss;
context.Response.Write(aaa);
context.Response.Write(Environment.NewLine);
foreach (DataColumn column in ds.Tables[0].Columns)
{
context.Response.Write(column.ColumnName + " ,");
}
context.Response.Write(Environment.NewLine);
foreach (DataRow row in ds.Tables[0].Rows)
{
for (int i = 0; i < ds.Tables[0].Columns.Count; i++)
{
context.Response.Write(row[i].ToString().Replace(" ", string.Empty).Replace(",", " ") + " ,");
}
context.Response.Write(Environment.NewLine);
}
string attachment = "attachment; filename= " + rolefullname + ".xls";
context.Response.ContentType = "application/csv";
context.Response.AppendHeader("Content-Disposition", attachment);
}
}
强文