bootstrap table实现单击单元格可编辑功能
程序员文章站
2022-04-29 16:33:00
要使bootstrap-table实现可编辑,需要配合使用x-editable插件。
先在页面上导入必要的css和js文件
要使bootstrap-table实现可编辑,需要配合使用x-editable插件。
先在页面上导入必要的css和js文件
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <title>bootstrap-table demo</title> <!-- bootstrap 3.3.6 --> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" rel="external nofollow" > <!-- bootstrap table --> <link rel="stylesheet" href="bootstrap-table-1.11.0/bootstrap-table.css" rel="external nofollow" > <!-- x-editable --> <link rel="stylesheet" href="x-editable/bootstrap3-editable/css/bootstrap-editable.css" rel="external nofollow" > </head> <body> <div class="container"> <p></p> <table id="table" class="table table-bordered table-hover"> </table> </div> <!-- jquery 2.2.0 --> <script src="jquery-2.2.0.min.js"></script> <!-- bootstrap 3.3.6 --> <script src="bootstrap/js/bootstrap.min.js"></script> <!-- bootstrap table --> <script src="bootstrap-table-1.11.0/bootstrap-table.js"></script> <script src="bootstrap-table-1.11.0/extensions/editable/bootstrap-table-editable.js"></script> <script src="x-editable/bootstrap3-editable/js/bootstrap-editable.js"></script> <script src="bootstrap-table-1.11.0/locale/bootstrap-table-zh-cn.min.js"></script> <script type="text/javascript"> $(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', oneditablehidden: 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'); // 打开被点击单元格的编辑状态 } ); }); </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JS实现调用本地摄像头功能示例
推荐阅读
-
angularjs实现table表格td单元格单击变输入框/可编辑状态示例
-
bootstrap table实现x-editable的行单元格编辑及解决数据Empty和支持多样式问题
-
bootstrap table实现双击可编辑、添加、删除行功能
-
bootstrap table实现点击翻页功能 可记录上下页选中的行
-
Angularjs+bootstrap+table多选(全选)支持单击行选中实现编辑、删除功能
-
bootstrap table实现单击单元格可编辑功能
-
angularjs实现table表格td单元格单击变输入框/可编辑状态示例
-
bootstrap table实现x-editable的行单元格编辑及解决数据Empty和支持多样式问题
-
Angularjs+bootstrap+table多选(全选)支持单击行选中实现编辑、删除功能的代码案例
-
bootstrap table实现单击单元格可编辑功能