| 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.
|
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.)
|
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.)
|
defaultHeight
|
number.
Gets the height (px) of the input element used when a new element is inserted.
Default -1 (default element's height).
|
defaultValue
|
string.
Gets the value of the input element used when a new element is inserted.
|
defaultWidth
|
number.
Gets the width (px) of the input element used when a new element is inserted.
Default -1 (default element's width).
|
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.)
|
inputType
|
string.
Gets the type of the input element ("text", "button", "radio" etc.).
|
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) });
|