Example usage for org.apache.wicket.markup.html.form AbstractTextComponent subclass-usage

List of usage examples for org.apache.wicket.markup.html.form AbstractTextComponent subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form AbstractTextComponent subclass-usage.

Usage

From source file com.mylab.wicket.jpa.ui.pages.select2.AbstractSelect2Choice.java

/**
 * Base class for Select2 components
 *
 * @param <T>
 *            type of choice object
 * @param <M>

From source file com.userweave.components.authorization.AuthOnlyTextComponent.java

/**
 * Base class for text components, that are only 
 * accessible, if the user has the right to edit
 * this field. Otherwise set a label to display.
 * Authorization is set in the 
 *       UserWeaveAuthorizationStrategy

From source file org.wicketstuff.extjs.form.ExtHtmlEditor.java

/**
 * Ext based HTML editor. This component have to be applyed to a <code>TEXTAREA</code> markup element
 * 
 * @author Paolo Di Tommaso
 *
 */

From source file wicket.contrib.tinymce.InPlaceEditComponent.java

public class InPlaceEditComponent extends AbstractTextComponent {
    private static final long serialVersionUID = 1L;

    private InPlaceSaveBehavior inPlaceSaveBehavior;
    private InPlaceEditBehavior inPlaceEditBehavior;

From source file wicket.contrib.tinymce4.InPlaceEditComponent.java

public class InPlaceEditComponent extends AbstractTextComponent<String> {
    private static final long serialVersionUID = 1L;
    private TinyMCESettings settings;

    public InPlaceEditComponent(String id, IModel<String> model) {
        super(id, model);