Package org.odlabs.wiquery.ui.datepicker

Examples of org.odlabs.wiquery.ui.datepicker.DatePickerYearRange


    });
   
    final DatePicker<String> withDropDownDatePicker = new DatePicker<String>("withDropDownDatePicker", withDropDownDateModel);
    withDropDownDatePicker.setChangeMonth(true);
    withDropDownDatePicker.setChangeYear(true);
    withDropDownDatePicker.setYearRange(new DatePickerYearRange(new Short("-20"), new Short("20"), true));
   
    // Label
    withDropDownDatePicker.setLabel(Model.of("Year/month dropdown"));
    form.add(withDropDownDatePicker);
   
View Full Code Here

TOP

Related Classes of org.odlabs.wiquery.ui.datepicker.DatePickerYearRange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.