单元格条件属性是一次性的,在页面初始化后就不会再变了
你得在参数面板上的控件上设置-事件-添加事件-点击-js代码
可用参考下面的js代码修改
/*获取隐藏的标签控件的值*/
var label= this.options.form.getWidgetByName("label").getValue();
/*判断标签控件的值*/
if(label=='隐藏')
{
/*当标签控件的值为隐藏时,则改为显示,并修改按钮名称为隐藏IRR计算参数*/
this.options.form.getWidgetByName("label").setValue("显示");
this.options.form.getWidgetByName("button").setValue("隐藏IRR计算参数");
}
else
{
/*当标签控件的值不为显示时,则改为隐藏,并修改按钮名称为显示IRR计算参数*/
this.options.form.getWidgetByName("label").setValue("隐藏");
this.options.form.getWidgetByName("button").setValue("显示IRR计算参数");
}
/*执行查询*/
_g().parameterCommit();