9
我正在使用Datatables與server_processing來獲取數據,主要問題是我不想指定html中的列的名稱(<th width="25" id ="th1">id</th>)
,我想在通過ajax獲取數據時動態創建列。使用Datatables動態創建列jquery
我的代碼是:
$('#table').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "server_processing.php?db="+pid+"&table="+id+"", //pid is the name of database and id the name of the table
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
這是一個很好的答案,但它不回答實際的OP。他在詢問列名和列說明,並且您正在回答數據。 –
Hey Giovanni,感謝您的評論,但出於好奇,您是否錯過了這篇文章的第一部分? aColumns描述列名稱。爲了清晰起見,我添加了JSON數據。 – Shanimal