0
Template.users.rendered = function() {
Template.instance().subscribe('userList');
if (Session.get('apply_tablestyling')==1) {
console.log('in datatable');
$('#users').dataTable({
"paging": true,
"lengthChange": false,
"searching": true,
"ordering": true,
"info": true,
"autoWidth": false
});
}
}
我正在使用datatables-bootstrap-3,我需要添加導出按鈕。除了顯示導出按鈕外,一切正常。流星中的導出按鈕
這一個沒有工作,需要服裝按鈕 – Mehr