私のページには、3 つのページのタブ ビューがあります。これは、以下のように CHtml::ajaxLink を使用しています。
<li >
<?php echo CHtml::ajaxLink("Manual Billing", CController::createUrl('billing/manualbilling'), array('update' => 'html',
'type' => 'POST',));?>
</li>
<li>
<?php echo CHtml::ajaxLink("Billing History", CController::createUrl('billing/historyBilling'), array('update' => 'html',
'type' => 'POST',
));?>
</li>
<li>
<?php echo CHtml::ajaxLink("Merchant Wise Billing Status", CController::createUrl('billing/manualbilling'), array('update' => 'html',
'type' => 'POST'), array(//htmlOptions
// 'class' => "reportlink"
));?>
</li>
指定された URL としてページが読み込まれますが、問題は、動作していないデータ テーブルを実装するためにビュー ページ内に jQuery 関数を指定したことです。
$(document).ready(function() {
$('#example').dataTable( {
"sScrollY": "400px",
"bPaginate": false,
"oLanguage": {
"sEmptyTable": "No records to display"
},
"sDom": 'T<"clear">lfrtip',
"aaSorting": [],
"aoColumns": [
{ "bSortable": false },
null,
null,
null,
null,
null,
],
"oTableTools": {
"sSwfPath": "<?php echo Yii::app()->request->baseUrl; ?>/media/js/TableTools/media/swf/copy_csv_xls_pdf.swf",
"aButtons": [
{
"sExtends": "print",
"sInfo": "Please press escape when print is completed."
}
// {
// "sExtends": "collection",
// // "sButtonText": "Save",
// "aButtons": [ "csv", "xls", "pdf" ]
// }
]
}
} );
} );
document.ready() にも入力されていません。助けてください