JAVA Apache Wicket Timeline Setup

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

Since it is a wrapper of our JavaScript Timeline 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>ShieldUI TreeView</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="timeline"></div>

</body>
</html>

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

final Timeline timeline = new Timeline("timeline");
add(timeline);
        
timeline.getOptions()
    .setLayout(TimelineOptions.Layout.CENTERED)
    .setCollapsible(true)
    .setDataSource(new DataSourceOptions()
        .setData(
            new HashMap() {{
                put("title", "Event 1");
                put("text", "Body for event 1.Line two...");
            }},
            new HashMap() {{
                put("title", "Event 2");
                put("text", "Body for event 2");
                put("collapsed", true);
            }},
            new HashMap() {{
                put("title", "Event 3");
            }},
            new HashMap() {{
                put("title", "Event 4");
                put("text", "Body for event 4");
            }}
        )
    );

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