Examples of TextAreaElement


Examples of org.olat.core.gui.formelements.TextAreaElement

    if (sConfirmation == null || sConfirmation.length() == 0) {
      // grab standard text
      sConfirmation = translate("conf.stdtext");
      config.set(TACourseNode.CONF_DROPBOX_CONFIRMATION, sConfirmation);
    }
    confirmation = new TextAreaElement("form.dropbox.confirmation", 4, 40, sConfirmation != null ? sConfirmation : "");
    addFormElement("confirmation", confirmation);
   
    Boolean enableMail = (Boolean)config.get(TACourseNode.CONF_DROPBOX_ENABLEMAIL);
    enablemail = new CheckBoxElement("form.dropbox.enablemail", enableMail != null ? enableMail.booleanValue() : true);
    addFormElement("enablemail", enablemail);
View Full Code Here

Examples of org.olat.core.gui.formelements.TextAreaElement

   * @param name
   * @param trans
   */
  public UserIdsForm(String name, Translator translator) {
    super(name, translator);
    idata = new TextAreaElement("form.addusers", 15, 40);
    idata.setExample(translate("form.names.example"));

    addFormElement("addusers", idata);
    addSubmitKey("next", "next"); // wizard style
  }
View Full Code Here

Examples of org.olat.core.gui.formelements.TextAreaElement

   */
  public ChangeMessageForm(String name, Translator translator) {
    super(name, translator);
    //
    StaticTextElement userInfo = new StaticTextElement("form.chngmsg.infolabel", translate("form.chngmsg.info"));
    userMsg = new TextAreaElement("form.chngmsg.usermsg", 7, 80);
    chkbx = new CheckBoxElement("form.chngmsg.informlearners", true);
    addFormElement("userInfo", userInfo);
    addFormElement("userMsg", userMsg);
    addFormElement("learnerYes", chkbx);

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.