可以实现的,通过查询按钮的点击事件实现
var kcm = this.options.form.getWidgetByName("课程名的参数").getValue();
var xm = this.options.form.getWidgetByName("姓名的参数").getValue();
if ((kcm == "" || kcm == null )&&( xm == "" || xm == null) ) {
alert("错误,姓名和课程名不可都为空!");
return false;
};