java中的接口是类吗
382
2023-05-28
bootstrap table实现单击单元格可编辑功能
要使bootstrap-table实现可编辑,需要配合使用x-editable插件。
先在页面上导入必要的css和js文件
$(function(){
$('#table').bootstrapTable({
url:'data.json',
columns:[
{field: 'id',title: 'ID'},
{field: 'name',title: '名称'},
{field: 'price',title: '单价'},
{field: 'number',title: '数量', sortable:true,
cellStyle:function(value,row,index) {
return {
"css":{
padding:'0px'
}
};
},
formatter:function(value,row,index){
if(value == undefined) return "0";
else return value;
},
editable:{
type:'text',
clear:false,
validate:function(value){
if(isNaN(value)) return {newValue:0, msg:'只允许输入数字'};
else if(value<0) return {newValue:0, msg:'数量不能小于0'};
else if(value>=1000000) return {newValue:0, msg:'当前最大只能输入999999'};
},
display:function(value){
$(this).text(Number(value));
},
//onblur:'ignore',
showbuttons:false,
defaultValue:0,
mode:'inline'
}
},
{field:'amount', title: '总价'}
],
//height:300,
idField:'id',
onEditabhttp://leHidden: function(field, row, $el, reason) { // 当编辑状态被隐藏时触发
if(reason === 'save') {
var $td = $el.closest('tr').children();
$td.eq(-1).html((row.price*row.number).toFixed(2));
$el.closest('tr').next().find('.editable').editable('show'); //编辑状态向下一行移动
} else if(reason === 'nochange') {
$el.closest('tr').next().find('.editable').editable('show');
}
}
});
$('#table').on( 'click', 'td:has(.editable)', function (e) {
//e.preventDefault();
e.stopPropagation(); // 阻止事件的冒泡行为
$(this).find('.editable').editable('show'); // 打开被点击单元格的编辑状态
} );
});
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~