0
我在我的web應用程序中使用jquery數據表。我想將自定義按鈕添加到從數據表生成的行。 button should display in the are marked in redjquery datatable,自定義按鈕,同一行,旁邊選擇
任何人都可以爲此提出一些解決方案嗎?
我在我的web應用程序中使用jquery數據表。我想將自定義按鈕添加到從數據表生成的行。 button should display in the are marked in redjquery datatable,自定義按鈕,同一行,旁邊選擇
任何人都可以爲此提出一些解決方案嗎?
使用DataTable的屬性如下
$(document).ready(function() {
$('#example').DataTable({
dom: 'Bfrtip',
buttons: [
{
text: 'My button',
action: function (e, dt, node, config) {
alert('Button activated');
}
}
]
});
});