All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.fhframework.model.forms.Select2DictionaryCombo Maven / Gradle / Ivy

There is a newer version: 4.10.401
Show newest version
package pl.fhframework.model.forms;

import pl.fhframework.annotations.Control;
import pl.fhframework.annotations.DocumentedComponent;

@DocumentedComponent(documentationExample = true, value = "Enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.",
        icon = "fa fa-outdent")
@Control(parents = {PanelGroup.class, Group.class, Column.class, Tab.class, Row.class, Form.class, Repeater.class}, invalidParents = {Table.class}, canBeDesigned = false)
public class Select2DictionaryCombo extends DictionaryCombo {
    public Select2DictionaryCombo(Form form) {
        super(form);
    }

    protected void processFiltering(String text) {
        filteredObjectValues.clear();
        filteredObjectValues.putAll(values);
        filterInvoked = true;
    }
}








© 2015 - 2024 Weber Informatics LLC | Privacy Policy