vote up 0 vote down star

Is there any way I can find what the previous active was when the active tab changed event is fired?

flag

59% accept rate

1 Answer

vote up 0 vote down

OK I've found a very simple solution.

JavaScript:

<script type="text/javascript">
    var lasttab = 0;
    function tabChanged(sender, args) {
        // do what ever i want with lastTab value
        lasttab = sender.get_activeTabIndex();
    }
</script>

Asp.net

    <cc1:TabContainer ID="TabContainer1"  
         runat="server" ActiveTabIndex="0" OnClientActiveTabChanged="tabChanged">
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.