This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploader.PaneItemChecked Property

Supported in: ActiveX , Java

Value that shows if the specified item is selected for upload.

Syntax

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setPaneItemChecked(Index, value);
value = getImageUploader("ImageUploaderID").getPaneItemChecked(Index);

Parameters

Index

A non-negative integer that specifies an index of a thumbnail item on a pane (zero-based). It should not exceed PaneItemCount - 1 for the implied pane. Depending on the layout mode, the following panes are implied:

  • In the one-pane layout mode, the upload pane is implied.
  • In the two-pane layout mode, the folder pane is implied.
  • In the three-pane layout mode, the folder pane is implied.

Property Value

A boolean value (true or false).

Remarks

This property can be set to false value only (true value is not allowed due to security reasons). If the value of this property is false Image Uploader unchecks the specified item depending on the layout mode:

  • In the one-pane mode, removes the specified item from the upload pane.
  • In the two-pane mode, unchecks the specified item from the folder pane.
  • In the three-pane mode, removes the specified item from the upload pane.

This property can return both true or false values depending on the Image Uploader layout mode:

  • In the one-pane mode, always true, as all items on the upload pane are selected for upload.
  • In the two-pane mode, true for all checked items on the folder pane.
  • In the three-pane mode, true for all items on the folder pane that also present on the upload pane.

In all other cases, false is returned.

See Also

Reference