JAVA Apache Wicket DataSource Setup

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

Since it is a wrapper of our javascript DataSource 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 DataSource</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>

</body>
</html>

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

DataSource datasource = new DataSource("datasource");
DataSourceOptions options = datasource.getOptions();

options.setData(
                new HashMap() {{
                          put("text", "Item1");
                          put("frequency", 45);
                }},
                new HashMap() {{
                          put("text", "Item2");
                          put("frequency", 45);
                }},
                new HashMap() {{
                          put("text", "Item3");
                          put("frequency", 60);
                }},
                new HashMap() {{
                          put("text", "Item4");
                          put("frequency", 90);
                }}
);

add(datasource);

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