本文整理了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
[英]Gets the MonthSelector associated with this date picker.
[中]获取与此日期选择器关联的月份选择器。
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Set the number of years to display in the years selection dropdown. The range of years will be
* centered on the selected date.
*/
public void setVisibleYearCount(int numberOfYears) {
if (numberOfYears <= 0) {
throw new IllegalArgumentException("The number of years to display must be positive");
}
visibleYearCount = numberOfYears;
getMonthSelector().refresh();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Set if the user can navigate through the years via a set of backward and forward buttons.
*/
public void setYearArrowsVisible(boolean yearArrowsVisible) {
this.yearArrowsVisible = yearArrowsVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
* the current year of the date picker via two dropdown lists.
*/
public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
this.yearAndMonthDropdownVisible = dropdownVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Refreshes all components of this date picker.
*/
protected final void refreshAll() {
highlighted = null;
getModel().refresh();
getView().refresh();
getMonthSelector().refresh();
if (isAttached()) {
ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
}
getView().setAriaSelectedCell(value);
}
代码示例来源:origin: com.google.gwt/gwt-servlet
/**
* Sets up the date picker.
*/
protected void setup() {
/*
* Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
* fill the available width, so we'd need to give it a size.
*/
VerticalPanel panel = new VerticalPanel();
initWidget(panel);
setStyleName(panel.getElement(), css.datePicker());
setStyleName(css().datePicker());
panel.add(this.getMonthSelector());
panel.add(this.getView());
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Set the number of years to display in the years selection dropdown. The range of years will be
* centered on the selected date.
*/
public void setVisibleYearCount(int numberOfYears) {
if (numberOfYears <= 0) {
throw new IllegalArgumentException("The number of years to display must be positive");
}
visibleYearCount = numberOfYears;
getMonthSelector().refresh();
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Set the number of years to display in the years selection dropdown. The range of years will be
* centered on the selected date.
*/
public void setVisibleYearCount(int numberOfYears) {
if (numberOfYears <= 0) {
throw new IllegalArgumentException("The number of years to display must be positive");
}
visibleYearCount = numberOfYears;
getMonthSelector().refresh();
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Set if the user can navigate through the years via a set of backward and forward buttons.
*/
public void setYearArrowsVisible(boolean yearArrowsVisible) {
this.yearArrowsVisible = yearArrowsVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
* the current year of the date picker via two dropdown lists.
*/
public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
this.yearAndMonthDropdownVisible = dropdownVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Set if the user can navigate through the years via a set of backward and forward buttons.
*/
public void setYearArrowsVisible(boolean yearArrowsVisible) {
this.yearArrowsVisible = yearArrowsVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* If the <code>dropdownVisible</code> is equal to true, the user will be able to change the current month and
* the current year of the date picker via two dropdown lists.
*/
public void setYearAndMonthDropdownVisible(boolean dropdownVisible) {
this.yearAndMonthDropdownVisible = dropdownVisible;
getMonthSelector().refresh();
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Refreshes all components of this date picker.
*/
protected final void refreshAll() {
highlighted = null;
getModel().refresh();
getView().refresh();
getMonthSelector().refresh();
if (isAttached()) {
ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
}
getView().setAriaSelectedCell(value);
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Refreshes all components of this date picker.
*/
protected final void refreshAll() {
highlighted = null;
getModel().refresh();
getView().refresh();
getMonthSelector().refresh();
if (isAttached()) {
ShowRangeEvent.fire(this, getFirstDate(), getLastDate());
}
getView().setAriaSelectedCell(value);
}
代码示例来源:origin: net.wetheinter/gwt-user
/**
* Sets up the date picker.
*/
protected void setup() {
/*
* Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
* fill the available width, so we'd need to give it a size.
*/
VerticalPanel panel = new VerticalPanel();
initWidget(panel);
setStyleName(panel.getElement(), css.datePicker());
setStyleName(css().datePicker());
panel.add(this.getMonthSelector());
panel.add(this.getView());
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
/**
* Sets up the date picker.
*/
protected void setup() {
/*
* Use a table (VerticalPanel) to get shrink-to-fit behavior. Divs expand to
* fill the available width, so we'd need to give it a size.
*/
VerticalPanel panel = new VerticalPanel();
initWidget(panel);
setStyleName(panel.getElement(), css.datePicker());
setStyleName(css().datePicker());
panel.add(this.getMonthSelector());
panel.add(this.getView());
}
代码示例来源:origin: fjfd/microscope
vbox.add(super.getMonthSelector());
vbox.add(super.getView());
内容来源于网络,如有侵权,请联系作者删除!