DateField dateField = new DateField(new DateTimePropertyEditor(DateTimeFormat.getFormat("dd-MMM-yyyy")));
String sDate=session.getIps_year().toString() + "-" + session.getIps_month().toString() + "-01";
Date mindate =Application.mysqlDateTimeFormat.parse(sDate);
dateField.setMinValue(mindate);
dateField.getDatePicker().setMinDate(mindate);
Date maxdDate=CalendarUtil.copyDate(mindate);
CalendarUtil.addMonthsToDate(maxdDate, 1);
int days= CalendarUtil.getDaysBetween(mindate, maxdDate);
maxdDate=CalendarUtil.copyDate(mindate);
CalendarUtil.addDaysToDate(maxdDate, days-1);
dateField.setMaxValue(maxdDate);
dateField.getDatePicker().setMaxDate(maxdDate);
Malaya Merdeka - from Ash's vinyl collection
8 months ago
0 comments:
Post a Comment