Hello,
I use a RadTabStrip with 4 Tabs and I need to disable some tabs at some time.
I tried it with the following code:
| Private Sub DisbableTab(ByVal actualTab As Integer) |
| Dim Tabs As RadTabStrip = RadTabStrip1 |
| For Each tab As RadTab In Tabs.GetAllTabs() |
| If tab IsNot Nothing And tab.Index = actualTab Then |
| tab.PostBack = False |
| End If |
| Next |
| End Sub |
The postback-Event now not fires, but the Tabs get marked as selected if we click with the mouse on the tab.
How can we supress this?
Thanks
Christian