Progress-bar: controlled by buttons
Components / Samples
Description
Since
wicket-kendo-ui-6.17.0Licensing
Kendo UI "Core" is Apache License 2.0 licensed, starting from version 2014.1.416.Prior to version 2014.1.416, Kendo UI "Web" was licensed under GPLv3.
A pro version - with a commercial license - is also available, it provides additional widgets (see http://docs.telerik.com/kendo-ui/intro/supporting/list-of-widgets)
To be able to use it, you need to change the
ResourceReference
with kendo.all.min.js
See also
[howto]-change-resource-referencesSources
- Java
- HTML
- CSS
package com.googlecode.wicket.jquery.ui.samples.kendoui.progressbar; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.core.request.handler.IPartialPageRequestHandler; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.model.Model; import com.googlecode.wicket.jquery.core.Options; import com.googlecode.wicket.kendo.ui.KendoIcon; import com.googlecode.wicket.kendo.ui.form.button.AjaxButton; import com.googlecode.wicket.kendo.ui.panel.KendoFeedbackPanel; import com.googlecode.wicket.kendo.ui.widget.progressbar.ProgressBar; public class ButtonProgressBarPage extends AbstractProgressBarPage { private static final long serialVersionUID = 1L; public ButtonProgressBarPage() { this.initialize(); } private void initialize() { final Form<Void> form = new Form<Void>("form"); this.add(form); // FeedbackPanel // final KendoFeedbackPanel feedback = new KendoFeedbackPanel("feedback"); form.add(feedback.setOutputMarkupId(true)); // ProgressBar // final Options options = new Options(); options.set("type", Options.asString("percent")); options.set("animation", false); final ProgressBar progressBar = new ProgressBar("progress", Model.of(90), options) { private static final long serialVersionUID = 1L; @Override public void onValueChanged(IPartialPageRequestHandler handler) { info("value: " + this.getDefaultModelObjectAsString()); handler.add(feedback); } @Override public void onComplete(IPartialPageRequestHandler handler) { info("completed!"); handler.add(feedback); } }; form.add(progressBar); // Buttons // form.add(new AjaxButton("backward") { private static final long serialVersionUID = 1L; @Override protected String getIcon() { return KendoIcon.ARROW_60_LEFT; } @Override protected void onSubmit(AjaxRequestTarget target) { progressBar.backward(target); } }); form.add(new AjaxButton("forward") { private static final long serialVersionUID = 1L; @Override protected String getIcon() { return KendoIcon.ARROW_60_RIGHT; } @Override protected void onSubmit(AjaxRequestTarget target) { progressBar.forward(target); } }); } }
<!DOCTYPE html> <html xmlns:wicket="http://wicket.apache.org"> <head> <wicket:head> <title>Wicket jQuery UI: progress-bar / buttons</title> </wicket:head> </head> <body> <wicket:extend> <div id="demo-panel"> <form wicket:id="form"> <table> <tr> <td width="240" colspan="2"> <div wicket:id="progress"></div> </td> </tr> <tr> <td> <button wicket:id="backward"></button> </td> <td align="right"> <button wicket:id="forward"></button> </td> </tr> </table> <br/> <div wicket:id="feedback" style="width: 360px;"></div> </form> </div> </wicket:extend> </body> </html>