bootstraptable現在の行を削除
1336 ワード
1、columns部分
2、削除ボタン
3、イベントの削除
注意関連css/jsの導入
bootboxはbootboxです.min.jsプラグイン
{
field: 'del',
title: ' ',
width: 100,
align: 'center',
valign: 'middle',
events:delEvents,
formatter:delFunction
}
2、削除ボタン
function delFunction(value,row,index){
return [
''
].join('');
}
3、イベントの削除
//
window.delEvents ={
"click #del_btn":function(e,value,row,index)
{
console.log(row);
bootbox.confirm({
size: "small",
message: " "+row.no+" ?",
buttons: {
confirm: {
label: ' ',
className: 'btn-success'
},
cancel: {
label: ' ',
className: 'btn-danger'
}
},
callback: function(result) {
if(result) {
$.ajax({
method:"post",
url:'/list?datatype=jsonp',
data:{
no:row.no,
},
dataType : "jsonp",
async:true,
success:function (res) {
$("#tab").bootstrapTable('refresh');
}
});
}
}
});
}
}
注意関連css/jsの導入
bootboxはbootboxです.min.jsプラグイン