Fileupload"

From Documentation
Line 12: Line 12:
  
 
== Use as a Component ==
 
== Use as a Component ==
 +
 +
<javadoc>org.zkoss.zul.Fileupload</javadoc> itself is a component. You can use it directly as follows.
 +
 +
<javadoc lang="xml">
 +
<button label="Upload" upload="true">
 +
  <attribute name="onLoad">
 +
  org.zkoss.util.media.Media media = event.getMedia();
 +
  //then, you can process media here
 +
  </attribute>
 +
</button>
 +
</javadoc>
  
 
== Invoke the Static Method: get ==
 
== Invoke the Static Method: get ==

Revision as of 11:46, 2 September 2010

Fileupload

Employment/Purpose

There are two ways to use Fileupload: uses Fileupload as a component to upload files, or invoke Fileupload.get() to open a dialog to upload files.

Use as a Component

Fileupload itself is a component. You can use it directly as follows.

  
  org.zkoss.util.media.Media media = event.getMedia();
  //then, you can process media here
  

.html" title="">Upload" upload="true">

  
  org.zkoss.util.media.Media media = event.getMedia();
  //then, you can process media here
  

Invoke the Static Method: get

Fileupload provides a set of static methods to simplify the file uploading, such as Fileupload.get(), Fileupload.get(String, String), and so on.

The behavior is a little bit different depending on if the event thread is enabled (default: it is disabled). For more information please refer to ZK Configuration Reference: disable-event-thread.

Event Thread Enabled

Event Thread Disabled

Specify the target component

Since 5.0.2, if the event thread is disabled, an onUpload event is posted to all root components when the upload dialog is closed.

If you want the event being sent to a particular component, specify the component in the desktop's attribute called org.zkoss.zul.Fileupload.target.

For example,

desktop.setAttribute("org.zkoss.zul.Fileupload.target", mainWindow);
Fileupload.get(); //then mainWindow will receive the onUpload event

Example

<image id="img" />
Upload your hot shot:
<fileupload onUpload="img.setContent(event.media)" />


Supported events

Name
Event Type
None None

Supported Children

*NONE

Use cases

Version Description Example Location
     

Version History

Version Date Content
5.0.2 May 2010 Able to specify a target for the onUpload event sent by Fileupload.get(). Used if the event thread is disabled.



Last Update : 2010/09/02

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.