注意区分
参数面板
this.options.form.getWidgetByName("tx");
填报界面是
contentPane.getWidgetByName("tx")
决策报表
this.options.form.getWidgetByName("pp")
_g().getWidgetByName("pp")
contentPane.parameterEl.getWidgetByName("pp")
-------------------------------
决策报表的话,换下面两个试试,还不行,那就加延时函数
var th=this;
setTimeout(function() {
var widget=th.options.form.getWidgetByName("tx");
widget.setValue("1");
_g()XXXXX
}, 100);