カスタム プロパティを設定し、後でアクセス/編集できるようにしようとしています。これは可能ですか?古いバージョンでは fnSettings を使用できることがわかりましたが、1.10.5 でこれを使用するにはどうすればよいですか?
$('#table').DataTable({
customProp: 'Hello World'
});
次に、ボタンをクリックすると、次のことができると思いました。
$('.test').on('click', function(e){
var table = $('#table').DataTable();
console.log(table.settings.oInit.customProp);
}
しかし、私は得る: Uncaught TypeError: Cannot read property 'customProp' of undefined
誰も私がこれを行う方法を知っていますか?