I want to add one more column at last with link (clicking on that link to select that perticular row
I want to add one more column at last with link (clicking on that link to select that perticular row
$(document).ready(function() {
var oTable = $('#example').dataTable({
"bJQueryUI": true,
"bAutoWidth": true,
"sScrollY": "700px",
"bStateSave": true,
"iDisplayLength": 50,
"oLanguage": {
"sLengthMenu": 'Display '+
'50'+
'100'+
'200'+
'All'+
' records'
},
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"sSwfPath": "/EF/common/js/TableTools-2.0.3/TableTools-2.0.3/media/swf/copy_csv_xls_pdf.swf"
},
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/EF/reports/test/form/frmReportInstallationJson.jsp",
"aoColumns": [
{ "mDataProp": "BatchName" },
{ "mDataProp": "BatchId" },
{ "mDataProp": "RoleName" },
{ "mDataProp": "Mode" },
{ "mDataProp": "Installment" },
{ "mDataProp": "NoofCenters" },
{ "mDataProp": "Totalamount" }
]
} );
} );
I want to add one more column at last with link (clicking on that link to select that perticular row to copy it on next page) how I can do that plz help me
var oTable = $('#example').dataTable({
"bJQueryUI": true,
"bAutoWidth": true,
"sScrollY": "700px",
"bStateSave": true,
"iDisplayLength": 50,
"oLanguage": {
"sLengthMenu": 'Display '+
'50'+
'100'+
'200'+
'All'+
' records'
},
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"sSwfPath": "/EF/common/js/TableTools-2.0.3/TableTools-2.0.3/media/swf/copy_csv_xls_pdf.swf"
},
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/EF/reports/test/form/frmReportInstallationJson.jsp",
"aoColumns": [
{ "mDataProp": "BatchName" },
{ "mDataProp": "BatchId" },
{ "mDataProp": "RoleName" },
{ "mDataProp": "Mode" },
{ "mDataProp": "Installment" },
{ "mDataProp": "NoofCenters" },
{ "mDataProp": "Totalamount" }
]
} );
} );
I want to add one more column at last with link (clicking on that link to select that perticular row to copy it on next page) how I can do that plz help me
This discussion has been closed.
Replies