s-HR字段联动(字段显示隐藏/禁用启用/必录非必录)
表单上的字段联动
设置必录的方法 shr.execByFieldIdAndMethod(fieldName,'addRules',{'required':true}); 设置非必录的方法 shr.execByFieldIdAndMethod(fieldName,'removeRules','required'); 设置只读的方法 shr.execByFieldIdAndMethod(fieldName,'disable',null,_top.document); 设置非只读的方法 shr.execByFieldIdAndMethod(fieldName,'enable',null,_top.document); 隐藏的方法 $('#fieldName').parents('div[data-ctrlrole="labelContainer"]').hide(); 显示的方法 $('#fieldName').parents('div[data-ctrlrole="labelContainer"]').show();
表格的联动
设置必录的方法 var $grid = $('#' + gridId); var prop = $grid.getColProp(colName); prop.classes = 'required'; prop.required = true; if(prop.editoptions && prop.editoptions.validateJson){ prop.editoptions.validateJson.rules = "required:true"; }else if(prop.editoptions){ prop.editoptions['validateJson'] = {rules: "required:true"}; } $grid.trigger('reloadGrid'); 设置非必录的方法 var $grid = $('#' + gridId); var prop = $grid.getColProp(colName); prop.required = false; prop.classes = ''; if(prop.editoptions && prop.editoptions.validateJson && prop.editoptions.validateJson.rules == "required:true"){ prop.editoptions.validateJson.rules = ""; } $grid.trigger('reloadGrid'); 设置只读的方法 var $grid = $('#' + gridId); var prop = $grid.getColProp(colName); prop.classes = 'disabled'; prop.editable = false; $grid.trigger('reloadGrid'); 设置非只读的方法 var $grid = $('#' + gridId); var prop = $grid.getColProp(colName); if(prop.required){ prop.classes = 'required'; }else{ prop.classes = ''; }; prop.editable = true; $grid.trigger('reloadGrid'); 隐藏的方法 $('#grid').jqGrid('hideCol',colName); $('#grid').jqGrid("resizeGrid",{base:$grid,offset:0}); 显示的方法 $('#grid').jqGrid('showCol',colName); $('#grid').jqGrid("resizeGrid",{base:$grid,offset:0});
视图上可以用吗 还是只有开发可以用
s-HR字段联动(字段显示隐藏/禁用启用/必录非必录)
表单上的字段联动设置必录的方法 shr.execByFieldIdAndMethod(fieldName,'addRules',{'required':true}); 设置非必录的方法 shr.execByFiel...
点击下载文档
上一篇:招聘模块想通过报表设计相关报表下一篇:设置分录编辑界面是否可编辑
本文2024-09-17 00:50:55发表“s-hr cloud知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-shr-63634.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章