首先A2、B2控件设置不可用,字体设置白色,然后C2增加编辑后事件,复制进去:
var a=this.getValue();
if(a=="123456"){
contentPane.getWidgetByCell('A2').setEnable(true);
contentPane.getWidgetByCell('B2').setEnable(true);
$("#A2-0-0").css("color", "black");
$("#B2-0-0").css("color", "black");
}
else{
contentPane.getWidgetByCell('A2').setEnable(false);
contentPane.getWidgetByCell('B2').setEnable(false);
$("#A2-0-0").css("color", "white");
$("#B2-0-0").css("color", "white");
}