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

SandeepMSandeepM Posts: 28Questions: 0Answers: 0
edited June 2012 in General
$(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

Replies

  • SandeepMSandeepM Posts: 28Questions: 0Answers: 0
    edited June 2012
    plz help me on it its urgent guys
This discussion has been closed.