Version

TabMovingEnd Property

Gets sets name of javascript function which is called before tab was permanently moved to new location.
Syntax
'Declaration
 
Public Property TabMovingEnd As String
public string TabMovingEnd {get; set;}
Remarks
Action can be canceled and in this case TabItem is moved back to its original position before TabMovingStart. Second param in handler is instance of TabMovingEventArgs class, which provides information about TabItem which is going to be moved.
Example
Me.WebTab1.ClientEvents.TabMovingEnd = "WebTab1_TabMovingEnd"
this.WebTab1.ClientEvents.TabMovingEnd = "WebTab1_TabMovingEnd";
// The client event TabMovingEnd takes two parameters sender and e
       // sender  is the object which is raising the event
       // e is the TabMovingEventArgs

       function WebTab1_TabMovingEnd(sender, e) {

                      //Gets the index of the tab item involved in the event as an integer
                      var tabIndex = e.get_tabIndex();

                      //Gets the visible index of the moving tab as an integer
                      var tabVisibleIndex = e.get_tabVisibleIndex();

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

                      if (tabIndex == 2)

                      //Cancels the TabMoving event
                          e.set_cancel(true);

                      else

                          label.innerHTML = "Moving ends for the 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