com.google.gwt.user.datepicker.client.DatePicker.getMonthSelector()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.6k)|赞(0)|评价(0)|浏览(243)

本文整理了Java中com.google.gwt.user.datepicker.client.DatePicker.getMonthSelector()方法的一些代码示例,展示了DatePicker.getMonthSelector()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DatePicker.getMonthSelector()方法的具体详情如下:
包路径:com.google.gwt.user.datepicker.client.DatePicker
类名称:DatePicker
方法名:getMonthSelector

DatePicker.getMonthSelector介绍

[英]Gets the MonthSelector associated with this date picker.
[中]获取与此日期选择器关联的月份选择器。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Set the number of years to display in the years selection dropdown. The range of years will be
  3. * centered on the selected date.
  4. */
  5. public void setVisibleYearCount(int numberOfYears) {
  6. if (numberOfYears <= 0) {
  7. throw new IllegalArgumentException("The number of years to display must be positive");
  8. }
  9. visibleYearCount = numberOfYears;
  10. getMonthSelector().refresh();
  11. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Set if the user can navigate through the years via a set of backward and forward buttons.
  3. */
  4. public void setYearArrowsVisible(boolean yearArrowsVisible) {
  5. this.yearArrowsVisible = yearArrowsVisible;
  6. getMonthSelector().refresh();
  7. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
  3. * the current year of the date picker via two dropdown lists.
  4. */
  5. public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
  6. this.yearAndMonthDropdownVisible = dropdownVisible;
  7. getMonthSelector().refresh();
  8. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Refreshes all components of this date picker.
  3. */
  4. protected final void refreshAll() {
  5. highlighted = null;
  6. getModel().refresh();
  7. getView().refresh();
  8. getMonthSelector().refresh();
  9. if (isAttached()) {
  10. ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
  11. }
  12. getView().setAriaSelectedCell(value);
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets up the date picker.
  3. */
  4. protected void setup() {
  5. /*
  6. * Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
  7. * fill the available width, so we'd need to give it a size.
  8. */
  9. VerticalPanel panel = new VerticalPanel();
  10. initWidget(panel);
  11. setStyleName(panel.getElement(), css.datePicker());
  12. setStyleName(css().datePicker());
  13. panel.add(this.getMonthSelector());
  14. panel.add(this.getView());
  15. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Set the number of years to display in the years selection dropdown. The range of years will be
  3. * centered on the selected date.
  4. */
  5. public void setVisibleYearCount(int numberOfYears) {
  6. if (numberOfYears <= 0) {
  7. throw new IllegalArgumentException("The number of years to display must be positive");
  8. }
  9. visibleYearCount = numberOfYears;
  10. getMonthSelector().refresh();
  11. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Set the number of years to display in the years selection dropdown. The range of years will be
  3. * centered on the selected date.
  4. */
  5. public void setVisibleYearCount(int numberOfYears) {
  6. if (numberOfYears <= 0) {
  7. throw new IllegalArgumentException("The number of years to display must be positive");
  8. }
  9. visibleYearCount = numberOfYears;
  10. getMonthSelector().refresh();
  11. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Set if the user can navigate through the years via a set of backward and forward buttons.
  3. */
  4. public void setYearArrowsVisible(boolean yearArrowsVisible) {
  5. this.yearArrowsVisible = yearArrowsVisible;
  6. getMonthSelector().refresh();
  7. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
  3. * the current year of the date picker via two dropdown lists.
  4. */
  5. public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
  6. this.yearAndMonthDropdownVisible = dropdownVisible;
  7. getMonthSelector().refresh();
  8. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Set if the user can navigate through the years via a set of backward and forward buttons.
  3. */
  4. public void setYearArrowsVisible(boolean yearArrowsVisible) {
  5. this.yearArrowsVisible = yearArrowsVisible;
  6. getMonthSelector().refresh();
  7. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
  3. * the current year of the date picker via two dropdown lists.
  4. */
  5. public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
  6. this.yearAndMonthDropdownVisible = dropdownVisible;
  7. getMonthSelector().refresh();
  8. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Refreshes all components of this date picker.
  3. */
  4. protected final void refreshAll() {
  5. highlighted = null;
  6. getModel().refresh();
  7. getView().refresh();
  8. getMonthSelector().refresh();
  9. if (isAttached()) {
  10. ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
  11. }
  12. getView().setAriaSelectedCell(value);
  13. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Refreshes all components of this date picker.
  3. */
  4. protected final void refreshAll() {
  5. highlighted = null;
  6. getModel().refresh();
  7. getView().refresh();
  8. getMonthSelector().refresh();
  9. if (isAttached()) {
  10. ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
  11. }
  12. getView().setAriaSelectedCell(value);
  13. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets up the date picker.
  3. */
  4. protected void setup() {
  5. /*
  6. * Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
  7. * fill the available width, so we'd need to give it a size.
  8. */
  9. VerticalPanel panel = new VerticalPanel();
  10. initWidget(panel);
  11. setStyleName(panel.getElement(), css.datePicker());
  12. setStyleName(css().datePicker());
  13. panel.add(this.getMonthSelector());
  14. panel.add(this.getView());
  15. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets up the date picker.
  3. */
  4. protected void setup() {
  5. /*
  6. * Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
  7. * fill the available width, so we'd need to give it a size.
  8. */
  9. VerticalPanel panel = new VerticalPanel();
  10. initWidget(panel);
  11. setStyleName(panel.getElement(), css.datePicker());
  12. setStyleName(css().datePicker());
  13. panel.add(this.getMonthSelector());
  14. panel.add(this.getView());
  15. }

代码示例来源:origin: fjfd/microscope

  1. vbox.add(super.getMonthSelector());
  2. vbox.add(super.getView());

相关文章