有一个填报报表,其中有一个时间控件,只让去填报一次,之后就不能再修改了,其他正常填报,这该怎么做?
if(this.getValue()!="") {this.setEnable(false)}else {this.setEnable(true)}
if(this.getValue()!="")
{this.setEnable(false)}
else
{this.setEnable(true)}
添加编辑后事件
this.setEnable(false);
用条件属性判断当前单元格是否有值,如果有值,使用控件,反之不用控件
或者用JS和填报校验实现