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 org.projectforge.web.wicket.components.MaxLengthTextArea.java

public class MaxLengthTextArea extends TextArea<String> {
    private static final long serialVersionUID = 1507157818607697767L;

    private Integer maxLength;

    /**

From source file org.rauschig.wicket.ace.AceEditorField.java

/**
 * AceEditorField
 */
public class AceEditorField<T> extends TextArea<T> {

    private static final long serialVersionUID = 1L;

From source file org.wicketstuff.console.OutputTextArea.java

/**
 * @author cretzel
 */
public class OutputTextArea extends TextArea<String> {

    private class ErrorClassAttributeAppender extends AttributeAppender {

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

/**
 * TextArea component integrating Ext wicket <code>Ext.form.TextArea</code>
 *
 * @author Paolo Di Tommaso
 *
 */

From source file org.xaloon.wicket.plugin.jquery.ckeditor.CkEditorTextArea.java

/**
 * @author vytautas r.
 * @param <T>
 */
public class CkEditorTextArea<T> extends TextArea<T> {

From source file wicket.contrib.bbcodecomponent.edit.BbCodeTextArea.java

public class BbCodeTextArea extends org.apache.wicket.markup.html.form.TextArea {

    public BbCodeTextArea(String id, IModel model) {
        super(id, model);
        setOutputMarkupId(true);
    }