-
Notifications
You must be signed in to change notification settings - Fork 139
PopupControlExtender
PopupControl is an ASP.NET AJAX extender that can be attached to any control to open a popup window that displays additional content. This popup window will probably be interactive and located within an ASP.NET AJAX UpdatePanel. So, it will perform complex server-based processing (including postbacks) without affecting the rest of the page. The popup window can contain any content including ASP.NET server controls, HTML elements, etc. Once work of the popup window is done, a simple server-side call dismisses it and triggers any relevant script on the client to run and update the page dynamically.
Name | Description |
---|---|
CommitProperty | Optional setting specifying a property of the control being extended that should be set with the result of the popup Remarks: If the property value is missing (an empty line), the default "value" property will be used |
CommitScript | Optional setting specifying an additional script to run after the result of the popup is set |
ExtenderControlID | The ID of the extender control |
OffsetX | The number of pixels to offset the Popup from its default position, as specified by Position |
OffsetY | The number of pixels to offset the Popup from its default position, as specified by Position |
OnHide | OnHide animation will be played each time the popup is hidden |
OnShow | OnShow animation will be played each time the popup is displayed. The popup will be positioned correctly but hidden. Animation can be used to display the popup with other visual effects |
PopupControlID | The ID of the control to display |
Position | Optional setting specifying where the popup should be positioned relative to the target control (Left, Right, Top, Bottom, or Center) |
Name | Description |
---|---|
Cancel() | Cancels the popup control and hides it abandoning results |
Commit(result) | Commits the popup control and hides it applying the specified result |
GetProxyForCurrentPopup(page) | Returns a proxy PopupControlExtender representing the currently active popup on the specified page |
Name | Description |
---|---|
commitProperty | The property of a control being extended that should be set with the result of the popup |
commitScript | An additional script to run after the result of the popup is set |
extenderControlID | The ID of the extender control |
offsetX | The number of pixels to horizontally offset the Popup from its default position |
offsetY | The number of pixels to vertically offset the Popup from its default position |
onHide | A JSON definition of generic OnHide Animation |
onHideBehavior | Generic OnHide Animation behavior |
onShow | A JSON definition of generic OnShow Animation |
onShowBehavior | Generic OnShow Animation behavior |
popupControlID | The ID of the control to display |
popupVisible | Determines whether or not the popup is visible |
position | Determines where the popup should be positioned relative to the target control (Left, Right, Top, Bottom, or Center) |
Name | Description |
---|---|
hidePopup() | Hides the popup |
onHide() | Plays OnHide animation |
onShow() | Plays OnShow animation |
showPopup() | Shows the popup |
Name | Description |
---|---|
hidden | Firs after the popup is hidden |
hiding | Fires when the popup is being hidden |
showing | Fires when the popup is being shown |
shown | Fires after the popup is shown |
The property of a control being extended that should be set with the result of the popup
Getter name: get_commitProperty()
Setter name: set_commitProperty(value)
An additional script to run after the result of the popup is set
Getter name: get_commitScript()
Setter name: set_commitScript(value)
The ID of the extender control
Getter name: get_extenderControlID()
Setter name: set_extenderControlID(value)
The number of pixels to horizontally offset the Popup from its default position
Getter name: get_offsetX()
Setter name: set_offsetX(value)
The number of pixels to vertically offset the Popup from its default position
Getter name: get_offsetY()
Setter name: set_offsetY(value)
A JSON definition of generic OnHide Animation
Getter name: get_onHide()
Setter name: set_onHide(value)
Generic OnHide Animation behavior
Getter name: get_onHideBehavior()
A JSON definition of generic OnShow Animation
Getter name: get_onShow()
Setter name: set_onShow(value)
Generic OnShow Animation behavior
Getter name: get_onShowBehavior()
The ID of the control to display
Getter name: get_popupControlID()
Setter name: set_popupControlID(value)
Determines whether or not the popup is visible
Getter name: get_popupVisible()
Determines where the popup should be positioned relative to the target control (Left, Right, Top, Bottom, or Center)
Getter name: get_position()
Setter name: set_position(value)
Cancels the popup control and hides it abandoning results
Commits the popup control and hides it applying the specified result
Params:
-
result
- Type: String
- Description: Result
Returns a proxy PopupControlExtender representing the currently active popup on the specified page
Remarks: Only the Cancel and Commit methods should be called on the proxy
Params:
-
page
- Type: Page
- Description: Page
Hides the popup
Plays OnHide animation
Plays OnShow animation
Shows the popup
Firs after the popup is hidden
Add event handler method: add_hidden(handler)
Remove event handler method: remove_hidden(handler)
Raise event method: raise_hidden()
Fires when the popup is being hidden
Add event handler method: add_hiding(handler)
Remove event handler method: remove_hiding(handler)
Raise event method: raise_hiding()
Fires when the popup is being shown
Add event handler method: add_showing(handler)
Remove event handler method: remove_showing(handler)
Raise event method: raise_showing()
Fires after the popup is shown
Add event handler method: add_shown(handler)
Remove event handler method: remove_shown(handler)
Raise event method: raise_shown()
This content was moved from https://ajaxcontroltoolkit.codeplex.com/documentation to this Documentation wiki. This is now the authoritative location of the AJAX Control Toolkit documentation.
- Step-by-Step Installation Guide
- Upgrading from v7.x and below
- Uninstalling the AJAX Control Toolkit
- Troubleshooting Installer Issues
- Updating the Project from CI Builds
- How to Use Bundling and CDN
- Creating a Custom Localization
- Creating a Custom Control
- Design Standards
Controls:
- Accordion
- AjaxFileUpload
- AreaChart
- AsyncFileUpload
- BarChart
- BubbleChart
- ComboBox
- Editor (deprecated)
- Gravatar
- LineChart
- NoBot
- PieChart
- Rating
- ReorderList
- Seadragon
- TabContainer
- TabPanel
Extenders:
- AlwaysVisibleControl
- Animation
- AutoComplete
- BalloonPopup
- Calendar
- CascadingDropDown
- CollapsiblePanel
- ColorPicker
- ConfirmButton
- DragPanel
- DropDown
- DropShadow
- DynamicPopulate
- FilteredTextBox
- HoverMenu
- HtmlEditor
- ListSearch
- MaskedEdit
- MaskedEditValidator
- ModalPopup
- MultiHandleSlider
- MutuallyExclusiveCheckBox
- NumericUpDown
- PagingBulletedList
- PasswordStrength
- PopupControl
- ResizableControl
- RoundedCorners
- Slider
- SlideShow
- TextBoxWatermark
- ToggleButton
- UpdatePanelAnimation
- ValidatorCallout