GWT-Ext DatePicker.setDisabledDatesRE

发布于 2024-08-05 01:25:30 字数 805 浏览 6 评论 0原文

有人有使用 GWT-Ext DatePicker.setDisabledDatesRE(String re) 方法的经验吗?我已完成以下操作,并且正则表达式中指定的日期仍然可以选择。我已经能够使用 setDisabledDays 禁用日期,但我需要根据星期几以外的条件排除日期。

我正在使用 GWT 1.6.4 和 GWT-Ext 2.0.5。

谢谢。

...
import com.gwtext.client.widgets.DatePicker;
...
public class MySimpleDatePicker implements EntryPoint {

  public void onModuleLoad() {

    final Panel panel = new Panel();  
    final Panel calendarPanel = new Panel(); 

    DatePicker datePicker = new DatePicker();  
    Date initialDate = new Date();
    datePicker.setFormat("yyyy-mm-dd");
    datePicker.setValue(initialDate);
    String ddRE = "2009-09-28|2009-09-29";
    datePicker.setDisabledDatesRE(ddRE);
    calendarPanel.add(datePicker);    
    panel.add(calendarPanel);
    RootPanel.get().add(panel);
  }
}

Does anyone have any experience using the GWT-Ext DatePicker.setDisabledDatesRE(String re) method? I have done the following, and the dates specified in the regular expressions are still selectable. I have been able to disable dates using setDisabledDays, but I need to exclude dates based on criteria other than day of week.

I'm using GWT 1.6.4 and GWT-Ext 2.0.5.

Thanks.

...
import com.gwtext.client.widgets.DatePicker;
...
public class MySimpleDatePicker implements EntryPoint {

  public void onModuleLoad() {

    final Panel panel = new Panel();  
    final Panel calendarPanel = new Panel(); 

    DatePicker datePicker = new DatePicker();  
    Date initialDate = new Date();
    datePicker.setFormat("yyyy-mm-dd");
    datePicker.setValue(initialDate);
    String ddRE = "2009-09-28|2009-09-29";
    datePicker.setDisabledDatesRE(ddRE);
    calendarPanel.add(datePicker);    
    panel.add(calendarPanel);
    RootPanel.get().add(panel);
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟稳重的好男人 2024-08-12 01:25:30

我明白了这一点。 setFormat 的参数应该是“Ymd”,如下所示:

DatePicker datePicker = new DatePicker();  
Date initialDate = new Date();
datePicker.setFormat("Y-m-d");
System.out.println("date format is: " + datePicker.getFormat());
datePicker.setMinDate(initialDate);
datePicker.setValue(initialDate);
String ddRE = "09-09-28|09-09-29";
datePicker.setDisabledDatesRE(ddRE);

I figured this out. The argument to setFormat should be "Y-m-d", like this:

DatePicker datePicker = new DatePicker();  
Date initialDate = new Date();
datePicker.setFormat("Y-m-d");
System.out.println("date format is: " + datePicker.getFormat());
datePicker.setMinDate(initialDate);
datePicker.setValue(initialDate);
String ddRE = "09-09-28|09-09-29";
datePicker.setDisabledDatesRE(ddRE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文