
com.googlecode.wicket.kendo.ui.form.combobox.AjaxComboBox Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.googlecode.wicket.kendo.ui.form.combobox;
import java.util.List;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.model.IModel;
import com.googlecode.wicket.jquery.core.JQueryBehavior;
import com.googlecode.wicket.jquery.core.event.ISelectionChangedListener;
import com.googlecode.wicket.jquery.core.event.SelectionChangedListenerWrapper;
import com.googlecode.wicket.jquery.core.renderer.IChoiceRenderer;
import com.googlecode.wicket.kendo.ui.ajax.OnChangeAjaxBehavior;
/**
* Provides a Kendo UI DropDownList widget.
* It should be created on a HTML <input /> element
* This ajax version will post the component, using a {@link OnChangeAjaxBehavior}, when the 'change' javascript method is called.
*
* @author Sebastien Briquet - sebfz1
*
* @param the type of the model object
*/
public class AjaxComboBox extends ComboBox implements ISelectionChangedListener
{
private static final long serialVersionUID = 1L;
/**
* Constructor
*
* @param id the markup id
* @param choices the list of choices
*/
public AjaxComboBox(String id, List choices)
{
super(id, choices);
}
/**
* Constructor
*
* @param id the markup id
* @param choices the list of choices
* @param renderer the renderer to be used, so the renderer item text and its values can be dissociated
*/
public AjaxComboBox(String id, List choices, IChoiceRenderer super T> renderer)
{
super(id, choices, renderer);
}
/**
* Constructor
*
* @param id the markup id
* @param choices the list model of choices
*/
public AjaxComboBox(String id, IModel> choices)
{
super(id, choices);
}
/**
* Constructor
*
* @param id the markup id
* @param choices the list model of choices
* @param renderer the renderer to be used, so the renderer item text and its values can be dissociated
*/
public AjaxComboBox(String id, IModel> choices, IChoiceRenderer super T> renderer)
{
super(id, choices, renderer);
}
/**
* Constructor
*
* @param id the markup id
* @param model the {@link IModel}
* @param choices the list of choices
*/
public AjaxComboBox(String id, IModel model, List choices)
{
super(id, model, choices);
}
/**
* Constructor
*
* @param id the markup id
* @param model the {@link IModel}
* @param choices the list model of choices
* @param renderer the renderer to be used, so the renderer item text and its values can be dissociated
*/
public AjaxComboBox(String id, IModel model, List choices, IChoiceRenderer super T> renderer)
{
super(id, model, choices, renderer);
}
/**
* Constructor
*
* @param id the markup id
* @param model the {@link IModel}
* @param choices the list model of choices
*/
public AjaxComboBox(String id, IModel model, IModel> choices)
{
super(id, model, choices);
}
/**
* Constructor
*
* @param id the markup id
* @param model the {@link IModel}
* @param choices the list model of choices
* @param renderer the renderer to be used, so the renderer item text and its values can be dissociated
*/
public AjaxComboBox(String id, IModel model, IModel> choices, IChoiceRenderer super T> renderer)
{
super(id, model, choices, renderer);
}
// Properties //
@Override
public boolean isSelectionChangedEventEnabled()
{
return true;
}
// Events //
/**
* Triggered when the selection has changed
*/
public final void onSelectionChanged()
{
this.convertInput();
this.updateModel();
}
@Override
public void onSelectionChanged(AjaxRequestTarget target)
{
// noop
}
// Factories //
@Override
public JQueryBehavior newWidgetBehavior(String selector)
{
return new ComboBoxBehavior(selector, this.newSelectionChangedListenerWrapper()) {
private static final long serialVersionUID = 1L;
@Override
protected CharSequence getDataSourceUrl()
{
return AjaxComboBox.this.getCallbackUrl();
}
};
}
/**
* Gets a new {@link ISelectionChangedListener} that allow to call both {@link #onSelectionChanged()} and {@link #onSelectionChanged(AjaxRequestTarget)}
*
* @return a new {@link SelectionChangedListenerWrapper} by default
*/
protected final ISelectionChangedListener newSelectionChangedListenerWrapper()
{
return new SelectionChangedListenerWrapper(this) {
private static final long serialVersionUID = 1L;
@Override
public void onSelectionChanged(AjaxRequestTarget target)
{
AjaxComboBox.this.onSelectionChanged(); // updates the model
AjaxComboBox.this.onSelectionChanged(target);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy