JAVA Apache Wicket Calendar Setup

The ShieldUI Calendar Apache Wicket component offers streamlined setup and deployment of our libraries.

Since it is a wrapper of our javascript Calendar component, you need to include the references to the CSS and JavaScript resources in the HEAD section of your webpage:

<!DOCTYPE html>
<html>
<head>
<title>Shield Calendar</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/shieldui-all.min.js"></script>

</head>
<body>
    <div wicket:id="calendar"></div>
</body>
</html>

Then init the calendar and add it to your wicket page like in the following example:

Calendar calendar = new Calendar("calendar");
CalendarOptions options = calendar.getOptions();

java.util.Calendar min = java.util.Calendar.getInstance();
min.set(2000, 1, 1);
        
java.util.Calendar max = java.util.Calendar.getInstance();
max.set(2039, 3, 1);

options.setMin(min);
options.setMax(max);
options.setValue(new Date());
options.getFooter()
       .setEnabled(true)
       .setFooterTemplate("{0:dd.MM.yy}");

add(calendar);

To see more information on this wrapper, please refer to the following startup guide.