else
cal = Calendar.getInstance();
cal.setTimeInMillis(value.getTime());
String jsDate = "new Date(" + cal.get(Calendar.YEAR) + "," + cal.get(Calendar.MONTH) + "," + cal.get(Calendar.DAY_OF_MONTH) + ")";
options.put("maxDate", new JsScript(jsDate));
}
return this;
}