晓亮 回复 xhqw821(提问者)第一个控件:
var day1= this.options.form.getWidgetByName(\"day1\").getValue(); ;
var day2= this.options.form.getWidgetByName(\"day2\");
this.options.form.getWidgetByName(\"day2\").setValue(day1);
第二个控件:
var day2= this.options.form.getWidgetByName(\"day2\").getValue(); ;
var day1= this.options.form.getWidgetByName(\"day1\");
this.options.form.getWidgetByName(\"day1\").setValue(day2);
xhqw821(提问者) 回复 晓亮tab1日期控件编辑后事件JS如下:
var day1= this.options.form.getWidgetByName(\"特选择日期\").getValue();
var day2= this.options.form.getWidgetByName(\"百选择日期\");
var day3= this.options.form.getWidgetByName(\"数选择日期\");
this.options.form.getWidgetByName(\"百选择日期\").setValue(day1);
this.options.form.getWidgetByName(\"数选择日期\").setValue(day1);
tab2和tab3日期控件编辑后事件以此类推,结果正如您所料,可以完美实现,谢谢!!!!!!!!!!