Skip to content

UpdatePanelAnimation

MikhailTymchukDX edited this page Apr 29, 2016 · 2 revisions

UpdatePanelAnimationExtender (demo)

UpdatePanelAnimationExtender is an extender that allows you to play animations both while an UpdatePanel is updating and after its update is finished. The animations to be played are declaratively specified by using XML.

Properties

Name Description
AlwaysFinishOnUpdatingAnimation An optional property that makes sure the OnUpdated event will fire only after the onUpdating event is completed
OnUpdated Generic animation played after the UpdatePanel has finished updating (but only if the UpdatePanel was changed)
OnUpdating Generic animation played as when any UpdatePanel begins updating
TriggerControlsClientID ClientID's of the trigger controls

Methods

Name Description
GetControl(id) Returns the control specified by its ID
GetTargetControl() Returns the UpdatePanel, whose updates are used to play animations (this is also the default target of animations)

Client properties

Name Description
alwaysFinishOnUpdatingAnimation An optional property that makes sure the OnUpdated event will fire only after the onUpdating event is completed
onUpdated Generic animation played after the UpdatePanel has finished updating (but only if the UpdatePanel was changed)
onUpdatedBehavior Generic OnUpdated Animation's behavior
onUpdating Generic animation played as when any UpdatePanel begins updating
onUpdatingBehavior Generic OnUpdating Animation's behavior
triggerControlsClientID ClientIDs of the trigger controls

Client properties

onUpdating

Generic animation played as when any UpdatePanel begins updating

Getter name: get_onUpdating()
Setter name: set_onUpdating(value)

onUpdatingBehavior

Generic OnUpdating Animation's behavior

Getter name: get_onUpdatingBehavior()

onUpdated

Generic animation played after the UpdatePanel has finished updating (but only if the UpdatePanel was changed)

Getter name: get_onUpdated()
Setter name: set_onUpdated(value)

onUpdatedBehavior

Generic OnUpdated Animation's behavior

Getter name: get_onUpdatedBehavior()

alwaysFinishOnUpdatingAnimation

An optional property that makes sure the OnUpdated event will fire only after the onUpdating event is completed

Getter name: get_alwaysFinishOnUpdatingAnimation()
Setter name: set_alwaysFinishOnUpdatingAnimation(value)

triggerControlsClientID

ClientIDs of the trigger controls

Getter name: get_triggerControlsClientID()
Setter name: set_triggerControlsClientID(value)

Methods

GetControl(id)

Returns the control specified by its ID

Params:

  • id
    • Type: Number
    • Description: ID of the control

GetTargetControl()

Returns the UpdatePanel, whose updates are used to play animations (this is also the default target of animations)

Clone this wiki locally