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 com.doculibre.constellio.wicket.components.form.LoggingTextArea.java

@SuppressWarnings("serial")
public class LoggingTextArea extends TextArea {

    private Date lastLoggingDate;

    private List<String> loggedLines = new ArrayList<String>();

From source file com.evolveum.midpoint.web.component.AceEditor.java

public class AceEditor extends TextArea<String> {

    private IModel<Boolean> readonly = new Model(false);
    private int minSize = 200;

    public AceEditor(String id, IModel<String> model) {

From source file com.francetelecom.clara.cloud.presentation.tools.CodeMirrorTextArea.java

public class CodeMirrorTextArea<T> extends TextArea<T> {

    private static final long serialVersionUID = -3005705037397085288L;

    private boolean readOnly;

From source file com.gitblit.wicket.panels.MarkdownTextArea.java

public class MarkdownTextArea extends TextArea {

    private static final long serialVersionUID = 1L;

    protected String repositoryName;

From source file com.google.code.jqwicket.ui.ckeditor.CKEditorTextArea.java

/**
 * @author mkalina
 * 
 */
public class CKEditorTextArea<T> extends TextArea<T> {

From source file com.google.code.jqwicket.ui.lwrte.LWRTETextArea.java

/**
 * @author mkalina
 * 
 */
public class LWRTETextArea<T> extends TextArea<T> {

From source file com.google.code.jqwicket.ui.markitup.MarkItUpTextArea.java

/**
 * @author mkalina
 * 
 */
public class MarkItUpTextArea<T> extends TextArea<T> {

From source file com.googlecode.wicket.jquery.ui.kendo.editor.Editor.java

/**
 * Provides a Kendo UI Editor widget.<br/>
 * It should be created on a HTML &lt;textarea /&gt; element
 *
 * @author Sebastien Briquet - sebfz1
 *

From source file com.googlecode.wicket.kendo.ui.form.TextArea.java

/**
 * Provides a {@link org.apache.wicket.markup.html.form.TextArea} with the Kendo-ui style<br/>
 * <br/>
 * <b>Note:</b> {@link TextArea} is not a {@link IJQueryWidget} (no corresponding widget is supplied by Kendo UI)<br/>
 * It means that required Kendo UI dependencies (javascript/stylesheet) are not automatically added. 
 *

From source file com.googlecode.wicket.kendo.ui.widget.editor.Editor.java

/**
 * Provides a Kendo UI Editor widget.<br/>
 * It should be created on a HTML &lt;textarea /&gt; element
 *
 * @author Sebastien Briquet - sebfz1
 *