モーダルダイアログで表示するデータテーブルを取得できません。私は空のテーブルを得る。Jquery DataTableがブートストラップモーダルで読み込まれない
//あなたのcreateTablをコールデータテーブルのcreateTableForModal
function createTableForModal()
{
//this is just example code, but it doesn't work
var dataSet = [
[ "Tiger Nixon", "System Architect", "Edinburgh", "5421", "2011/04/25", "$320,800" ],
[ "Garrett Winters", "Accountant", "Tokyo", "8422", "2011/07/25", "$170,750" ]];
$(document).ready(function() {
$('#uploadVideosTable').DataTable({
data: dataSet,
columns: [
{ title: "Name" },
{ title: "Position" },
{ title: "Office" },
{ title: "Extn." },
{ title: "Start date" },
{ title: "Salary" }
],retrieve: true,
});
});
}
HTML FORモーダル
createTableForModal(selectedLesson);
//show the modal
$('#editLessonModal').modal();
CODE
<table id="uploadVideosTable" class="table table-striped table-bordered table-hover table-responsive">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Extn.</th>
<th>Start Date</th>
<th>Salary</th>
</tr>
</thead>
</table>
コンソールエラー? –
いいえ、コンソールエラーはありませんでした。 –