泛微Ecology9-明细表灰色提示信息多行JS

该代码功能:明细表内字段添加灰色提示信息,鼠标点击时提示信息消失,可遍历多行明细添加信息。

 

<script>
jQuery(document).ready(function(){
  var rowCount= WfForm.getDetailRowCount("detail_1");
  console.log('rowCount'的值是+rowCount)
  
      for(var rowIndex = 0; rowIndex<rowCount;rowIndex++){
          WfForm.setTextFieldEmptyShowContent("field6872_"+rowIndex, "如有多人逗号隔开");
          WfForm.setTextFieldEmptyShowContent("field6874_"+rowIndex, "填写报销金额");
          WfForm.setTextFieldEmptyShowContent("field6873_"+rowIndex, "填写简短描述");
        }
      WfForm.registerAction(WfForm.ACTION_ADDROW+"1", function(index){
        WfForm.setTextFieldEmptyShowContent("field6872_"+index+"","如有多人逗号隔开");
        WfForm.setTextFieldEmptyShowContent("field6874_"+index+"","填写报销金额");
        WfForm.setTextFieldEmptyShowContent("field6873_"+index+"","填写简短描述");
   });    
});
</script>

 

阅读剩余
THE END