控件为空时查询就改变控件的UI,输入背景变灰,或者输入框变红等,提示我该控件框未输入值,已经提示文本了,还想要个UI提示类的效果
参考,其中TX为文本框控件名
var a = this.options.form.getWidgetByName("TX").getValue();
if (a.length == 0) {
$("div[widgetName=TX]").css({
"border": "solid yellow"
});
}
效果