更新时间:2018/1/10 下午5:49:58
更新说明:修改双击效果失败的bug
更新时间:2018/1/3 下午5:20:02
更新说明:
1 2 3 4 | $(e.$element.selector).find( "input[name='checkList']" ).removeAttr( 'checked' ); var x = $( this ).index( '.cjjTable-remove' ); $(e.$element.selector).find( "input[name='checkList']" ).get(x).checked = true ; $(e.$element.selector).find( "input[name='checkBoth']" ).removeAttr( 'checked' ); |
添加$(e.$element.selector),防止所有的input[name='']变化
更新时间:2018/1/2 下午4:15:55
更新说明:新增了前后端分页的删除跟批量删除功能
前台分页的样子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | $( '#histroyBox' ).CJJTable({ title: [ "装点" , "卸点" , "运输货物" , "下单日期" , "作者" ], //thead中的标题 必填 body: [ "taskCode" , "startAddr" , "endAddr" , "varietiesTypeName" , "createDate" , "customerName" ], //tbody td 取值的字段 必填 display: [1, 1, 1, 1, 2, 1], //隐藏域,1显示,2隐藏 必填 pageNUmber: 10, //每页显示的条数 选填 pageLength: data.length, //选填 url: data, //数据源 必填 operation: 1, //操作单行 1操作 0不操作 dbTrclick: function (e, ar) { //双击tr事件 }, buttonSave: function (ar) { alert(JSON.stringify(ar)) }, buttonRemove: function (ar) { console.log(ar) $( '#histroyBox' ).CJJReload(); } }); |
后台分页的样子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | $( '#histroyBox' ).CJJTable({ title: [ "装点" , "卸点" , "运输货物" , "下单日期" ], //thead中的标题 必填 body: [ "contactName" , "contactMobliePhone" , "carrierName" , "taskNum" , "taskCustomerExpectPrice" , "taskCustomerBudgetFreight" ], //tbody td 取值的字段 必填 display: [1, 1, 1, 1, 2, 2], //隐藏域,1显示,2隐藏 必填 pageJson: { taskId: 528710, pageSize: 10, //ajax请求参数中的每页展示数量 选填 token: "yJUmunFeG3REqisYAmCfeA" }, url: '/api/quoted/quotedList' , //数据源 必填 operation: 1, //操作单行 1操作 0不操作 dbTrclick: function (e, ar) { //双击tr事件 alert(JSON.stringify(ar)) }, buttonSave: function (e) { alert(JSON.stringify(e)) }, buttonRemove: function (ar) { console.log(ar) $( '#histroyBox' ).CJJReload(); } }); |
更新时间:2017/12/27 11:11:00
更新说明:新增操作单行的数据的修改保存
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | //前台分页的样子 $( '#histroyBox' ).CJJTable({ title: [ "装点" , "卸点" , "运输货物" , "下单日期" , "作者" ], //thead中的标题 必填 body: [ "taskCode" , "startAddr" , "endAddr" , "varietiesTypeName" , "createDate" , "customerName" ], //tbody td 取值的字段 必填 display: [1, 1, 1, 1, 1, 2], //隐藏域,1显示,2隐藏 必填 pageNUmber: 10, //每页显示的条数 选填 pageLength: data.length, //选填 url: data, //数据源 必填 operation: 1, //操作单行 1操作 0不操作 dbTrclick: function (e) { //双击tr事件 alert(e.find( '.taskCode' ).html()) }, buttonSave: function (e) { console.log(e) } }); //后台分页的样子 /*$('#histroyBox').CJJTable({ title:["装点","卸点","运输货物","下单日期"],//thead中的标题 必填 body:["contactName","contactMobliePhone","carrierName","taskNum","taskCustomerExpectPrice","taskCustomerBudgetFreight"],//tbody td 取值的字段 必填 display:[1,1,1,1,2,2],//隐藏域,1显示,2隐藏 必填 pageJson:{ taskId:528710, pageSize:10,//ajax请求参数中的每页展示数量 选填 token:"yJUmunFeG3REqisYAmCfeA" }, url:'/api/quoted/quotedList',//数据源 必填 operation:1,//操作单行 1操作 0不操作 dbTrclick:function(e){ //双击tr事件 alert(e.find('.contactName').html()) }, buttonSave:function(e){ console.log(e) } });*/ |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com