Name | Description |
|---|
argument | An object that is transferred between the calling page and the RadWindow dialog. |
BrowserWindow | Returns a reference to the parent page's document. This is useful for calling functions on the parent page. |
get_animation | Gets the animation value for the RadWindow. Returns a variable of type Telerik.Web.UI.WindowAnimation. |
get_animationDuration | Gets animation duration value for the RadWindow. The default value is 500ms. |
get_autoSize | Gets a value which indicates whether the window will automatically resize itself according to its content or not. |
get_browserWindow |
Gets a reference to the RadWindow's parent [browser window] object.
|
get_centerIfModal |
Returns a boolean value whether CenterIfModal is set.
|
get_contentElement | Gets the content element when the RadWindow is used as controls container (its ContentTemplate) and not with NavigateUrl. |
get_contentFrame |
Returns a reference to RadWindow's content area (IFRAME). One possible use is to to call a function that is declared in the
RadWindow's page from the parent page. Another possible use is to modify the DOM.
|
get_cssClass |
Gets the class name specified in the CssClass property.
|
get_destroyOnClose | Gets a value indicating whether the RadWindow will be disposed and made inaccessible once it is closed. |
get_enableShadow | Gets a value indicating whether the RadWindow should have a shadow. |
get_height | Gets the RadWindow's height. |
get_iconUrl | Gets the URL of the icon in the upper left corner of the RadWindow titlebar. |
get_keepInScreenBounds |
Gets a value indicating whether the RadWindow will show only in the visible viewport of the browser window.
|
get_left |
Gets the horizontal offset relative to its offset element (usually the browser window). Corresponds to the Left server property.
|
get_maxHeight | Gets the maximum height of the RadWindow. |
get_maxWidth | Gets the maximum width of the RadWindow. |
get_minHeight | Gets the minimum height of the RadWindow. |
get_minimizeIconUrl | Gets the URL of the minimized icon of the RadWindow. |
get_minimizeZoneID | Gets the id (ClientID if a runat=server is used) of an HTML element where the RadWindow object will be docked when minimized. |
get_minWidth | Gets the minimum width of the RadWindow. |
get_modal | Gets a value indicating whether the RadWindow is modal or not. |
get_name |
Gets the name of the RadWindow.
|
get_navigateUrl | Gets the URL of the RadWindow. |
get_offsetElementID |
Gets the offset element ID (the element according to which the RadWindow should be positioned relatively). Works together with the Top and Left properties.
|
get_opacity |
Gets the value indicating the opacity of the RadWindow. The value should be between 0 and 100. The default value is 100 which is opaque.
|
get_openerElementID | Gets the OpenerElementId of the RadWindow. |
get_overlay |
Gets a value indicating whether the RadWindow has an overlay element.
|
get_popupElement |
Returns a reference to the popup element of the RadWindow.
|
get_reloadOnShow |
Gets a value indicating whether the page that is loaded in the RadWindow should be loaded everytime from the server or will leave the browser's default behavior.
|
get_restrictionZoneID |
Gets the id (ClientID if a runat=server is used) of an HTML element in which the RadWindow object will be able to move.
|
get_showContentDuringLoad |
Gets a value indicating whether the page that is loaded in the RadWindow should be shown during the loading process or only when it has finished loading.
|
get_showOnTopWhenMaximized |
Gets a value indicating whether the maximized RadWindow should be on top of the page's content. The default value is true.
|
get_status |
Gets current message in the status area of the RadWindow.
|
get_title |
Gets the title of the RadWindow.
|
get_top |
Gets the vertical offset relative to its offset element. Corresponds to the Top server property.
|
get_visibleStatusbar |
Gets the visibility of the RadWindow's status bar.
|
get_visibleTitlebar |
Gets the visibility of the RadWindow's titlebar.
|
get_width |
Gets the RadWindow's width.
|
get_windowManager |
Returns a reference to the RadWindowManager. As an alternative you can use the ASP.NET AJAX convention and use $find(),
e.g:oManager = $find("<%=RadWindowManager1.ClientID%>"); |
get_zindex |
Gets the z-Index of the RadWindow.
|
set_animation |
Sets the opening animation for the RadWindow. Takes an argument of type Telerik.Web.UI.WindowAnimation. Possible values are:
None, Resize, Fade, Slide, FlyIn. For example: oWnd.set_animation(Telerik.Web.UI.WindowAnimation.Slide); |
set_animationDuration |
Sets animation duration value for the RadWindow.
|
set_autoSize |
Sets a value which indicates whether the window should automatically resize itself according to its content or not.
|
set_autoSizeBehaviors |
Sets the AutoSizeBehaviors property of the RadWindow. Its argument must be a value or combination of values from the
Telerik.Web.UI.WindowAutoSizeBehaviors enum. To set more than one behavior, use "+".
Possible values are Width, WidthProportional, Height, HeightProportional, Default. For example:
(Telerik.Web.UI.WindowAutoSizeBehaviors.Width + Telerik.Web.UI.WindowAutoSizeBehaviors.Height) |
set_behaviors |
Sets the Behaviors property of the RadWindow. Its argument must be a value or combination of values from the Telerik.Web.UI.WindowBehaviors enum.
To set more than one behavior, use "+". Possible values are None, Resize, Minimize, Close, Pin, Maximize, Move, Reload, Default.
For example: oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Close) |
set_centerIfModal |
Sets the CenterIfModal property. It is true by default, meaning a modal RadWindow will ignore the Left and Top properties. When set to false these properties will be respeected.
Can be useful in the OnClientBeforeShow event.
|
set_contentElement |
Sets the content element when the RadWindow is used as controls container (i.e. its ContentTemplate) and not with NavigateUrl. Takes a DOM object as a parameter.
|
set_cssClass |
Sets the class name (otherwise specified in the CssClass property).
|
set_destroyOnClose |
Sets a value indicating whether the RadWindow will be disposed and made inaccessible once it is closed.
|
set_enableShadow |
Sets a value indicating whether the RadWindow should have a shadow.
|
set_height |
Sets the RadWindow height in pixels.
|
set_iconUrl |
Sets the URL of the icon in the upper left corner of the RadWindow titlebar. The new image must also be 16x16 pixels in size for correct display.
|
set_initialBehaviors |
Sets the InitialBehaviors property of the RadWindow. Its argument must be a value or combination of values from the Telerik.Web.UI.WindowBehaviors enum.
To set more than one behavior, use "+". Possible values are None, Minimize, Pin, Maximize, Default. For example:
oWnd.set_initialBehaviors(Telerik.Web.UI.WindowBehaviors.Pin + Telerik.Web.UI.WindowBehaviors.Maximize) |
set_keepInScreenBounds |
Sets a value indicating whether the RadWindow should show only in the visible viewport of the browser window.
|
set_left |
Sets the horizontal offset relative to its offset element in pixels. Corresponds to the Left server property.
|
set_maxHeight |
Sets the maximum height of the RadWindow in pixels.
|
set_maxWidth |
Sets the maximum width of the RadWindow in pixels.
|
set_minHeight |
Sets the minimum height of the RadWindow in pixels.
|
set_minimizeIconUrl |
Sets the URL of the minimized icon of the RadWindow.
|
set_minimizeZoneID |
Sets the clientside id of an HTML element where the window object will be docked when minimized.
|
set_minWidth |
Sets the minimum width of the RadWindow in pixels.
|
set_modal |
Sets the modality of the RadWindow. It accepts a boolean value as an argument, e.g. oWnd.set_modal(true);
|
set_offsetElementID |
Sets the OffsetElementId (clientside id of an HTML element according to which the RadWindow will be positioned).
|
set_opacity |
Sets the value indicating the opacity of the RadWindow. The value should be between 0 and 100. The default value is 100 which is opaque.
|
set_openerElementID |
Sets the OpenerElementId for the RadWindow. This is the HTML element that will open the RadWindow when clicked.
Note that if it is a postback element its server-side handlers will not fire.
|
set_overlay |
Sets a value indicating whether the RadWindow should create an overlay element.
|
set_reloadOnShow |
Sets a value indicating whether the page that is loaded in the RadWindow should be loaded everytime from the server or will leave the browser's default behaviour.
|
set_restrictionZoneID |
Sets the clientside id of an HTML element in which the window object will be able to move.
|
set_showContentDuringLoad |
Sets a value indicating whether the page that is loaded in the RadWindow should be shown during the loading process or when it has finished loading.
|
set_status |
Sets the message in the status area of the RadWindow.
|
set_title |
Sets the RadWindow's title. Note that if the content page has its own title set in the @Page directive or in the <head> section,
this title will override the RadWindow's one.
|
set_top |
Sets the vertical offset relative to its offset element in pixels. Corresponds to the Top server property.
|
set_visibleStatusbar |
Sets the visibility of the RadWindow's status bar. Accepts true/false as parameter.
|
set_visibleTitlebar |
Sets the visibility of the RadWindow's titlebar. Accepts true/false as parameter.
|
set_width |
Sets the RadWindow's width in pixels.
|