ASPxClientPopupControlBase.PinnedChanged Event
Occurs on the client side when the window pin state is changed.
Declaration
PinnedChanged: ASPxClientEvent<ASPxClientPopupWindowPinnedChangedEventHandler<ASPxClientPopupControlBase>>
Event Data
The PinnedChanged event's data class is ASPxClientPopupWindowPinnedChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
pinned | Gets a value indicating whether the processed popup window has been pinned. |
window | Gets the popup window object related to the event. Inherited from ASPxClientPopupWindowEventArgs. |
Remarks
Write a handler for the PinnedChanged event to perform any custom actions on the client side in response to a change in the window’s pin state. You can use the event parameter’s ASPxClientPopupWindowEventArgs.window property to identify the window which has been pinned or unpinned. The new pin state can be determined via the ASPxClientPopupWindowPinnedChangedEventArgs.pinned property.
See Also