Version

AjaxLoaded Property

Gets sets name of javascript function which is called when content of UpdatePanel of tab was refreshed from server.
Syntax
'Declaration
 
Public Property AjaxLoaded As String
public string AjaxLoaded {get; set;}
Remarks
That event is raised only when submit of UpdatePanel was triggered by tab change or by mouse click on already selected tab and it is invoked by PageRequestManager.endRequest.

That is event is not raised when UpdatePanel is loaded on initialization or after a full postback.

Action cannot be canceled. Second param in handler is instance of TabItemEventArgs class, which provides information about TabItem.
Example
Me.WebTab1.ClientEvents.AjaxLoaded = "WebTab1_AjaxLoaded"
this.WebTab1.ClientEvents.AjaxLoaded = "WebTab1_AjaxLoaded";
// The client event AjaxLoaded takes two parameters sender and e
// sender  is the object which is raising the event
// e is the TabItemEventArgs

function WebTab1_AjaxLoaded(sender, e) {

    var tab = sender;

    //Gets the index of the tab raising the client event
    var tabIndex = e.get_tabIndex();
    //Gets the collection of tabs
    var tabs = tab.get_tabs();
    //Gets the text of the tab raising the event
    var tabText = tabs[tabIndex].get_text();

    //Assuming you have a label called labelOutput on the form
    var label = $get('labelOutput');

    label.innerHTML = "Ajax loaded for tab with index " + tabIndex;  

 }
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also