Name
|
Description
|
|---|
add_activate |
Adds a function that will be called when a RadWindow is activated. The name of this function can also be declared in the OnClientActivate property.
|
add_autoSizeEnd |
Adds a function that will be called when a RadWindow has finished resizing when the AutoSize functionality has taken effect. The name of this function can also be declared in the OnClientAutoSizeEnd property.
|
add_beforeClose |
Adds a function that will be called before RadWindow is closed. You can cancel the closing of RadWindow there by using set_cancel(true). The name of this function can also be declared in the OnClientBeforeClose property.
|
add_beforeShow |
Adds a function that will be called before RadWindow is shown. You can cancel the closing of RadWindow there by using set_cancel(true). The name of this function can also be declared in the OnClientBeforeShow property.
|
add_close |
Adds a function that will be called when a RadWindow is closed. The name of this function can also be declared in the OnClientClose property.
|
add_command |
TAdds a function that will be called when the commands Pin, Reload, Minimize and Maximize are executed (when the user presses a titlebar button). The name of this function can also be declared in the OnClientCommand property.
|
add_dragEnd |
Adds a function that will be called when the user has finished dragging a RadWindow. The name of this function can also be declared in the OnClientDragEnd property
|
add_dragStart |
Adds a function that will be called when the user starts dragging a RadWindow. The name of this function can also be declared in the OnClientDragStart property.
|
add_pageLoad |
Adds a function that will be called when a RadWindow's content page is fully loaded. The name of this function can also be declared in the OnClientPageLoad property.
|
add_resize |
Adds a function that will be called when the RadWindow is being resized. The name of this function can also be set in the OnClientResize property.
|
add_resizeEnd |
Adds a function that will be called when the RadWindow is resized. The name of this function can also be set in the OnClientResizeEnd property.
|
add_resizeStart |
Adds a function that will be called when the RadWindow resizing is started. The name of this function can also be set in the OnClientResizeStart property.
|
add_show |
Adds a function that will be called when a RadWindow is shown. The name of this function can also be set in the OnClientShow property.
|
remove_activate | Removes a function declared with the add_activate function.
|
remove_autoSizeEnd |
Removes a function declared with the add_autoSizeEnd function.
|
remove_beforeClose |
Removes a function declared with the add_beforeclose function.
|
remove_beforeShow |
Removes a function declared with the add_beforeShow function.
|
remove_close |
Removes a function declared with the add_close function |
remove_command |
Removes a function declared with the add_command function
|
remove_dragEnd |
Removes a function declared with the add_dragEnd function.
|
remove_dragStart |
Removes a function declared with the add_dragStart function.
|
remove_pageLoad |
Removes a function declared with the add_pageLoad function.
|
remove_resize |
Removes a function declared with the add_resize function.
|
remove_resizeEnd |
Removes a function declared with the add_resizeEnd function.
|
remove_resizeStart |
Removes a function declared with the add_resizeStart function.
|
remove_show |
Removes a function declared with the add_show function.
|