This is a migrated thread and some comments may be shown as answers.

change Tab with buttonClick

1 Answer 120 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Christian
Top achievements
Rank 1
Christian asked on 09 Apr 2009, 08:45 AM
Hello,

in my applicatioin (small Workflow) I need to change to the next tab with a click on a button.

Are there examples how to do this?

Tanks
Christian

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 09 Apr 2009, 09:42 AM
Hi Christain,

Try the following code snippet in the button click event and see if it helps.

CS:
 
 protected void Button1_Click(object sender, EventArgs e) 
    { 
        RadTabStrip1.SelectedIndex = RadTabStrip1.SelectedIndex + 1; 
    } 


Thanks
Shinu
Tags
TabStrip
Asked by
Christian
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or