切换器 查询18号数据. 这时候切换月, 自动刷新10月1号到10月19号的数据(即切换 后日期控件范围是多少, 就显示该范围的数据) 试了好多刷新方法都不行,求助一下 单选按钮JS代码如下: var form = this.options.form; var value = this.getValue(); if(value == "date"){ //跳转到首页(因为下标是从0开始) fr-sheetbutton-container为sheet页的集合 $(".fr-sheetbutton-container").eq(0).trigger("click"); form.invisible(["结束日期","L结束日期","b0","b1"]); form.visible(["开始日期","L开始日期","前一天","后一天"]); }else if(value == "month"){ //fr-sheetbutton-container为sheet页的集合,获取集合长度 var len = $(".fr-sheetbutton-container").length; //跳转到尾页(因为下标是从0开始) 所以得长度减1 $(".fr-sheetbutton-container").eq(len-1).trigger("click"); form.invisible(["前一天","后一天","导出日报"]); form.visible(["开始日期","结束日期","L开始日期","L结束日期","b0","b1"]); //his.options.form.getWidegetByName("b0").fireEvent("click") _g().parameterCommit(); //contentPane.loadContentPane() //form.getWidgetByName("search").fireEvent("click"); } |