setUseWebDAV Property

Description

This property specifies whether the EditLive! for Java should make its WebDAV functionality available to users.

Syntax

JavaScript object.setUseWebDAV(blnWebDAV)

Parameters

blnWebDAV A boolean indicating if EditLive! for Java should make the WebDAV functionality available to users for image and hyperlink insertion.
Default:  False

Example

The following code creates an instance of EditLive! for Java and then informs EditLive! for Java to make the WebDAV functionality available to users.

var editlivejava1;
editlivejava1 = new EditLiveJava("ELJApplet1","600","400");
editlivejava1.setUseWebDAV(true);

Remarks

When making EditLive! for Java's WebDAV functionality available to users EditLive! for Java must also be configured correctly via the EditLive! for Java XML configuration.  The <repository> XML element contains the relevant configuration information for using a WebDAV repository with EditLive! for Java.

See Also