Welcome Guest Search | Active Topics | Sign In | Register

How can I cancel a tabstrip selection server side Options
PThompson
Posted: Wednesday, January 2, 2008 9:26:06 AM
Rank: Advanced Member
Groups: Member

Joined: 10/31/2007
Posts: 51
Hi

can I cancel a tabstrip item selection server side. If so how?


I have a tabstrip linked to a multipage with a pageview for each tab item.

For each page view I dynamically load a usercontrol tab selection.


e.g

Tabstrip
MultipPage
pageview2 = mycontrol1
pageview2 = mycontrol2

I would like to peform an evaluation each time a tab item is selected and if required cancel the tab selection.

Is this possible?

eo_support
Posted: Wednesday, January 2, 2008 10:21:55 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,083
Hi,

You won't be able to "cancel" it on the server side since the post back has already occurred. You can just perform your validation and then put the TabStrip into it's previous tab by setting the TabStrip's SelectedIndex, for example:

TabStrip1.SelectedIndex = 0

Put the TabStrip back to the first tab regardless. You will need to have your own mechanism to maintain the previous selected tab, though. One possible solution is to store it in ViewState.

Thanks


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.