JAVA Apache Wicket ListBox Setup

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

Since it is a wrapper of our javascript ListBox 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 ListBox</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="listbox"></div>
</body>
</html>

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

ListBox listbox = new ListBox("listbox");
ListBoxOptions options = listbox.getOptions();

options.setWidth(400);
options.setHeight(300);
options.setSelected(1);
options.setMultiple(false);
options.setTextTemplate(new JsonFunction("function(item) { return item.name; }"));
options.setDataSource(
            new DataSourceOptions()
                                .setData(
                                        new HashMap() {{
                                            put("name", "Afghanistan");
                                            put("code", "AF");
                                        }},
                                        new HashMap() {{
                                            put("name", "Albania");
                                            put("code", "AL");
                                        }},
                                        new HashMap() {{
                                            put("name", "Algeria");
                                            put("code", "DZ");
                                        }}
                                )
                );
add(qrcode);

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