0
すべてのjsファイルとcssファイルを含むhtmlページにデータテーブルを追加しました。 私が望むのは、Webサービスからデータを取得するためにajax呼び出しを持つ別のjavascriptファイル関数からそのデータテーブルを初期化し、そのデータをデータテーブルに割り当てることです。他のjavascriptファイル関数からhtmlページにあるデータテーブルを初期化する
report.js
function getReport(projectname){ // added for data table plugin
$.ajax({
type:"GET",
url:webCallUrl,
complete:function(data){
},error:function(){
}
})
}
test1.html
<div id="graphic12">
<table id="example" class="display" width="100%"></table>
$(document).ready(function() {
$('#graphic').html('<table cellpadding="0" cellspacing="0" border="0" class="display" id="example"></table>');
console.log(dataArr);
var table=$('#example').DataTable({
"aaData": dataArr,
"aoColumns": [
{"title": "organization"},
{"title": "project"},
{"title": "open_tickets"}
]
});
});