TA的每日心情 | 开心 2017-2-21 09:18 |
---|
签到天数: 15 天 [LV.4]
|
发表于 2017-5-10 14:43:44
|
显示全部楼层
- /**
- * @module emapEditableDataTable
- * @alias 编辑表格
- * @description 表格编辑,修改,新增,删除,校验
- * @example
- * $('#emapEditableDataTable').emapEditableDataTable({
- * newDataEmptyNum:1,
- * emapdatatable:{
- * pagePath:'',
- * action:'action',
- * customColumns:[{
- * colIndex:0,
- * type:'checkbox'
- * },{
- * colindex:'last',
- * type:'tpl',
- * column:{
- * text:'操作',
- * cellsRender:function(){
- * return '';
- * }
- * }
- * },{
- * colIndex: 40,//如果已经有自定义列colIndex为last,请在此设置为数字,否则会出现问题,40表示展示在最后一列
- * type:'edit_tpl', /表示编辑时的操作列
- * column:{
- * text:'操作',
- * //colModel为当前列的模型,settings为组件配置参数,其中的editMode表示是否进入编辑模式,rowData的isToDelete表示行是否待删除
- * cellsRender:function(row, column, value, rowData, colModel, settings){
- * return '';
- * }
- * }
- * }]
- * }
- * });
- */
复制代码
|
|