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

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

Introduction

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

Usage

From source file nl.knaw.dans.common.wicket.components.PossiblyDisabledTextArea.java

public class PossiblyDisabledTextArea extends TextArea {
    private static final long serialVersionUID = 1L;
    private boolean editMode;

    /**
     * @param id

From source file ontopoly.components.FieldInstanceTextArea.java

public class FieldInstanceTextArea extends TextArea<String> {

    private FieldValueModel fieldValueModel;
    private String oldValue;

    private String cols = "50";

From source file org.cast.cwm.components.AutoGrowTextArea.java

/**
 * A TextArea that will dynamically resize itself to a height that fits its current content.
 * NOTE: your textarea MUST use the cols and rows attributes to set a default size,
 * otherwise it will default to some browser-defined default size.  CSS sizing of the text area will 
 * not work when this Javascript is in effect.
 * 

From source file org.devproof.portal.core.module.common.component.richtext.BasicRichTextArea.java

/**
 * @author Carsten Hufe
 */
public class BasicRichTextArea extends TextArea<String> {
    private static final long serialVersionUID = 1L;
    private static final ResourceReference REF_BASE_CSS = new ResourceReference(BasicRichTextArea.class,

From source file org.devproof.portal.core.module.common.component.richtext.FullRichTextArea.java

/**
 * @author Carsten Hufe
 */
public class FullRichTextArea extends TextArea<String> {
    private static final long serialVersionUID = 1L;
    private static ResourceReference REF_CK_EDITOR_CONFIG = new ResourceReference(FullRichTextArea.class,

From source file org.geoserver.community.css.web.UpdatingTextArea.java

public class UpdatingTextArea extends TextArea<String> {
    public UpdatingTextArea(final String id, final IModel<String> model, final Component feedback) {
        super(id, model);
        add(new AjaxFormComponentUpdatingBehavior("onblur") {
            @Override
            protected void onUpdate(AjaxRequestTarget target) {

From source file org.geoserver.web.wicket.GeometryTextArea.java

/**
 * A form component for a {@link Geometry} object, expressed either as 2-3 space separated ordinates
 * or a WKT formatted {@link Geometry}
 * 
 * @author Andrea Aime, GeoSolutions
 */

From source file org.hippoecm.frontend.plugins.cms.codemirror.CodeMirrorEditor.java

/**
 * Component that displays a CodeMirror panel which gives a nice syntax highlighting for Groovy, etc.
 * The default language mode is groovy.
 * You can override {@link #renderHeadForCustomModes(IHeaderResponse)} and {@link #getEditorMode()}
 * to use other language mode.
 */

From source file org.onehippo.forge.cms.groovy.plugin.codemirror.CodeMirrorEditor.java

/**
 * Component that displays a CodeMirror panel which gives a nice syntax highlighting for Groovy.
 * @author Jeroen Reijn
 */
public class CodeMirrorEditor extends TextArea {

From source file org.patientview.radar.web.components.TextAreaWithHelpText.java

/**
 * A text area component which displays help text when the model value is an empty string
 */

public abstract class TextAreaWithHelpText extends TextArea {
    private String helpText;