ComboBox
Components / Samples
Description
Since
wicket-jquery-ui-kendo-1.2.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.combobox; import java.util.Arrays; import java.util.List; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.model.Model; import com.googlecode.wicket.kendo.ui.form.button.AjaxButton; import com.googlecode.wicket.kendo.ui.form.button.Button; import com.googlecode.wicket.kendo.ui.form.combobox.ComboBox; import com.googlecode.wicket.kendo.ui.panel.KendoFeedbackPanel; public class DefaultComboBoxPage extends AbstractComboBoxPage // NOSONAR { private static final long serialVersionUID = 1L; private static final List<String> GENRES = Arrays.asList("Black Metal", "Death Metal", "Doom Metal", "Folk Metal", "Gothic Metal", "Heavy Metal", "Power Metal", "Symphonic Metal", "Trash Metal", "Vicking Metal"); public DefaultComboBoxPage() { Form<Void> form = new Form<Void>("form"); this.add(form); // FeedbackPanel // final KendoFeedbackPanel feedback = new KendoFeedbackPanel("feedback"); form.add(feedback); // ComboBox // final ComboBox<String> combobox = new ComboBox<String>("combobox", new Model<String>(), GENRES); // new WildcardListModel(GENRES) can be used (but not ListModel) form.add(combobox); //.setRequired(true) // Buttons // form.add(new Button("submit") { // NOSONAR private static final long serialVersionUID = 1L; @Override public void onSubmit() { DefaultComboBoxPage.this.info(combobox); } }); form.add(new AjaxButton("button") { // NOSONAR private static final long serialVersionUID = 1L; @Override protected void onSubmit(AjaxRequestTarget target) { DefaultComboBoxPage.this.info(combobox); target.add(feedback); } }); } private void info(ComboBox<String> combobox) { String choice = combobox.getModelObject(); this.info(choice != null ? choice : "no choice"); } }
<!DOCTYPE html> <html xmlns:wicket="http://wicket.apache.org"> <head> <wicket:head> <title>Wicket Kendo UI: combo-box</title> </wicket:head> </head> <body> <wicket:extend> <div id="demo-panel"> <form wicket:id="form"> <input type="text" wicket:id="combobox" /> <button wicket:id="submit" type="submit">Submit</button> <button wicket:id="button">Ajax Button</button> <br/><br/> <div wicket:id="feedback" style="width: 360px;"></div> </form> </div> </wicket:extend> </body> </html>