Examples of FileElement


Examples of org.olat.core.gui.components.form.flexible.elements.FileElement

              FeedFormController internalFormCtr = (FeedFormController) feedFormCtr;
              if (internalFormCtr.imageDeleted()) {
                feedManager.deleteImage(feed);
              } else {
                // set the image
                FileElement image = null;
                image = internalFormCtr.getFile();
                feedManager.setImage(image, feed);
              }             
            } else {
              // it's an external feed form, nothing to do in this case
View Full Code Here

Examples of org.olat.core.gui.components.form.flexible.elements.FileElement

      }

    } else if (source == itemFormCtr) {
      if (event.equals(Event.CHANGED_EVENT) || event.equals(Event.CANCELLED_EVENT)) {
        if (event.equals(Event.CHANGED_EVENT)) {
          FileElement mediaFile = currentItem.getMediaFile();
          if (!feed.getItems().contains(currentItem)) {
            // Add the modified item if it is not part of the feed
            feedManager.addItem(currentItem, mediaFile, feed);
            createButtonsForItem(currentItem);
            createItemLink(currentItem);
View Full Code Here

Examples of org.olat.core.gui.components.form.flexible.elements.FileElement

  /**
   * @return The file element of this form
   */
  public FileElement getFile() {
    FileElement fileElement = null;
    if (file.isUploadSuccess()) {
      fileElement = file;
    }
    return fileElement;
  }
View Full Code Here

Examples of org.olat.core.gui.components.form.flexible.elements.FileElement

  /**
   * @return The file element of this form
   */
  private FileElement getFile() {
    FileElement fileElement = null;
    if (file.isUploadSuccess()) {
      fileElement = file;
    }
    return fileElement;
  }
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.