Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

AutoItemElementsAdded Event

Show in webframe
Occurs after an item HTML elements are re-added to the DOM.
Syntax
add_autoItemElementsAdded(function(sender, e))
autoItemElementsAdded.add(function(sender, e))
remove_autoItemElementsAdded(function(sender, e))
autoItemElementsAdded.remove(function(sender, e))
    

This event is occurs only if the viewer is using Elements Mode and if the value of ImageViewerElementsModeCreateOptions.AutoRemoveItemElements was true when this control is created.

AutoItemElementsAdded and AutoItemElementsRemoved can be used to track when an item goes out of view and its elements are deleted from the DOM or when the item re-enters the view and its elemens are re-created. AutoItemElementsAdded occurs after the item enters the view and its elements are created and AutoItemElementsRemoved occurs before the item is deleted, therefore, all the item's elements are still in the DOM and can be accessed when this event occurs.

Refer to Image Viewer Elements Mode for more information.

Event Data
Parameter Type Description
sender 'var' The source of the event.
e ImageViewerRenderEventArgs The event data.
See Also
Error processing SSI file