Controls the setup of the window.
Type: String
Controls the animation effect of the window.
Options:
•None
•Resize
•Fade
•Slide
•FlyIn
Type: String
Controls the actions that a user can take on the window. To include more than one action, separate each with a comma. (Example: Resize, Minimized, Pin)
• None – No behavior is specified
• Resize – Can be resized
• Minimize – Can be minimized
• Close – Can be closed
• Pin – Can be pinned
• Maximize – Can be maximized
• Move – Can be moved
• Reload – Will have a Refresh button
• Default – All
Type: Boolean
Indicates whether to render the skin CSS files during Ajax requests.
Type: Boolean
Indicates whether to render the link to the Inline base style sheet.
Type: Boolean
Indicates whether to render script references to the Inline scripts.
Type: Boolean
Indicates whether to render links to the Inline skins.
Type: Number
Sets the height of the window, measured in pixels.
Type: String
Controls the URL of the icon in the upper left corner of the title bar.
Type: String
The ID used within the tags wrapped around the Inline HTML. This allows it to be referenced from JavaScript.
Type: Boolean
Forces the screen to remain inside the parent window.
Type: Number
Controls how far from the left hand side of the parent window the window opens.
Type: String
Controls the URL of the minimize icon used in the window.
Type: String
The ID (ClientID if a runat=server is used) of an HTML element where the windows will be "docked" when minimized.
Type: Boolean
Controls whether the window will be loaded as a Modal dialogue, deactivating all content behind the window.
Type: String
The name used within the tags wrapped around the Inline HTML. This allows it to be referenced from JavaScript.
Type: String
The URL to be loaded into the window.
Type: String
The ID (ClientID if a runat=server is used) of an HTML element whose left and top position will be used as 0,0 of the window when it is first shown.
Type: String
The name of the JavaScript function used during this event.
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: String
The name of the JavaScript function used during this event.
Type: Boolean
Indicates whether the window will create an overlay element.
Type: String
The ID (ClientID if a runat=server is used) of an HTML element in which the windows will be able to move.
Type: Boolean
Indicates whether the page that is loaded in the window should be shown during the loading process, or when it has finished loading
Type: String
Controls the skin used in the window.
• Black
• Default
• Forest
• Hay
• Office2007
• Outlook
• Simple
• Sunset
• Telerik
• Vista
• Web20
• WebBlue
A sample of each is shown here:
Type: String
Controls the title of the window.
Type: Number
Controls how far from the top of the parent window the window opens.
Type: Boolean
Controls if the window is visible on page load.
Type: Boolean
Controls if the window status bar is visible in the window.
Type: Boolean
Controls if the window title bar is visible in the window.
Type: Number
Controls the width of the window, measured in pixels.
Example:
<Window>
<Setup>
<OnClientshow>OnClientOpen</OnClientshow>
<ID>CorasWorks</ID>
<Width>500</Width>
<Height>500</Height>
<VisibleOnPageLoad>true</VisibleOnPageLoad>
<VisibleStatusBar>false</VisibleStatusBar>
<Modal>false</Modal>
<Title>CorasWorks Home</Title>
<NavigateUrl>http://www.corasworks.net</NavigateUrl>
<Skin>WebBlue</Skin>
</Setup>
</Window>
Requires: ID, Name, Height, Width
Enables you to, from within a page, cause a load of content from a specified URL without a page refresh.
Example: CWChangeWindowLocationCorasWorks(‘http://www.corasworks.net’, ‘CorasWorks Home’);