Value that shows if the specified item on the specified pane is selected (as in group selection).
Syntax
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
value = getImageUploader("ImageUploaderID").getPaneItemSelected(Pane, Index);
|
|
Parameters
- Pane
-
A member of the following enumeration:
String value Integer value Description FolderPane 0 A folder pane (which displays the current folder content).
UploadPane 1 An upload pane (which displays files from the upload list).
NoteWhen you get this value through JavaScript, an integer value will be returned.
- Index
-
A non-negative integer that specifies an index of a thumbnail item on a pane (one-based). It should not exceed
PaneItemCount - 1for the specified pane.
Property Value
A boolean value (true or false). If true, the specified item is selected.
Copy Code