Rank: Newbie Groups: Member
Joined: 2/11/2014 Posts: 7
|
I am using the Tabstrip with a Multipage control. Each time a new tab is selected I would like to set the defaultbutton to a button on the new page. The ClientSideOnItemClick fires before the tab is changed. How can I set the default button after the tab change? Can this be done on the client side?
Thanks,
Steve G
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,196
|
Hi,
You can use something like setTimeout(function() { your_code_here; }, 100) to delay execution your code. This way while the event is triggered before the tab changes, your code will be called after the tab has changed.
Thanks!
|