views:

36

answers:

1

I have a RadTabStrip that just refuses to show on page load or reload. WHen My page load, the control is supposed to be loaded in the back with data and then displayed on the page. That isn't happening. The process runs through as expected in the server side but the rabtab is not displayed at all. Below is my code.

 If Not IsPostBack Then   
   If (intCurrent > 0) Then  
     If obj.key <> -1 Then  
          Dim objCo As coreelement = coreelement.GetInfo(obj.key)   
          Dim cradTab As New RadTab(objCo.desc, objCo.rkey.ToString)   
          rtab.Tabs.Add(cradTab)   
          rtab.Enabled = True   
          rtab.Visible = True  
          rtab.Skin = GetUserSettings.SkinDialog   
          rtab.EnableAjaxSkinRendering = True   
     End If   
     End If  
 End If
A: 

Are there any javascript errors that my prevent the client initialization of the Telerik tabstrip? Debug your code and use Fiddler to see whether everything is served and rendered as expected.

Dick

Dick Lampard
There are no error messages. What I notice is when I push f5, the page refreshes and the tabs display. However, when I click another section of my form and fire the post back event, the information on my tab is not refreshed. However when I do an f5 again, the refresh happens.
Race Maine
I used fiddler as you suggested. No Error messages of any kind. Sometimes the tabs do show up. I did notice however, that ever so often, I can get the tabs to show when I press refresh/F5 but I have to keep doing F5 to refresh the tabs.
Race Maine