Name |
Description |
additionalCss
|
string. Gets comma separated paths of additional CSS files for this popup.
(Inherited from Popup.)
|
attached
|
boolean. Gets a value indicating whether the popup is 'attached' to a button called this popup.
(Inherited from Popup.)
Always false.
|
autoClose
|
boolean. Gets a value indicating whether the popup is closed on click outside it.
(Inherited from Popup.)
Always false.
|
autoDimensions
|
boolean. Gets a value indicating whether the size of the popup is determining automatically.
(Inherited from Popup.)
Always true.
|
availableExtensions
|
object. Gets an array of file extensions (string) available for uploading and importing.
(Inherited from GalleryManager.)
|
cssPath
|
string. Gets the main style file path.
(Inherited from Popup.)
|
designPanel
|
object. Gets the
DesignPanel object
if the popup is used in context of EditPanel and in Design mode, otherwise - null.
(Inherited from Popup.)
|
duplicateFileMessage
|
string. Gets or sets the text for an alert window when the user tries to create a folder with duplicate name.
(Inherited from GalleryManager.)
|
editPanel
|
object. Gets the
EditPanel object
if the popup is used in context of EditPanel, otherwise - null.
(Inherited from Popup.)
|
element
|
string. Gets the DOM element that the current Control instance is associated with.
(Inherited from Sys.UI.Control.)
|
id
|
string. Gets the identifier for the current Control object. The default is the id value of the associated Sys.UI.DomElement object.
(Inherited from Sys.UI.Control.)
|
initialContent
|
string. Gets the popup's HTML content.
(Inherited from Popup.)
|
invalidFileExtensionMessage
|
string. Gets or sets the text for an alert window when the user tries to upload a file with invalid extension.
(Inherited from GalleryManager.)
|
invalidFileNameMessage
|
string. Gets or sets the text for an alert window when the user tries to create a folder with invalid name.
(Inherited from GalleryManager.)
|
popupHolder
|
object. Gets the associated Popup Holder object.
(Inherited from Popup.)
|
position
|
object. Gets or sets the coordinates of the popup position.
(Inherited from Popup.)
The position object has the following fields:
- left - left position in pixels;
- top - top position in pixels.
Example:
var position = popup.get_position();
// move it 100px to right down
popup.set_position({ left: (position.left + 100), top: (position.top + 100) });
|
relativeUrl
|
boolean. Gets or sets a value indicating whether to create a ralative URL for selected file (image, document etc.).
- unusable here.
(Inherited from GalleryManager.)
|