直接复选按钮,状态切换事件,写js
var a=this.getText();//获取显示值
if(a=="已出库")
{
this.options.form.getWidgetByName("控件1").setValue("X");
this.options.form.getWidgetByName("控件2").setValue("");
}
else if(a=="未出库")
{
this.options.form.getWidgetByName("控件2").setValue("X");
this.options.form.getWidgetByName("控件1").setValue("");
}
else
{
this.options.form.getWidgetByName("控件1").setValue("");
this.options.form.getWidgetByName("控件2").setValue("");
}