Package org.olat.core.gui.components.form.flexible.impl.elements

Examples of org.olat.core.gui.components.form.flexible.impl.elements.TextAreaElementImpl


   * @param formLayout
   * @return
   */
  public TextElement addTextAreaElement(String name, final String i18nLabel, final int maxLen, final int rows, final int cols, boolean isAutoHeightEnabled, String initialValue,
    FormItemContainer formLayout) {
    TextElement te = new TextAreaElementImpl(name, initialValue, rows, cols, isAutoHeightEnabled) {
      {
        setNotLongerThanCheck(maxLen, "text.element.error.notlongerthan");
        // the text.element.error.notlongerthan uses a variable {0} that
        // contains the length maxLen
      }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.form.flexible.impl.elements.TextAreaElementImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.