Community & Support
Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > RadTabStrip Disappears
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered RadTabStrip Disappears

Feed from this thread
  • Man Wei Tam avatar

    Posted on Aug 21, 2006 (permalink)

    My starting page has a rabtabstrip with two tabs. When i click one of these tabs it takes me to another page. This page contains couple tabs one that allows me to go back to the starting page and another tab to another page. When i click the one to go back to the starting page the radtabstrip in the starting page is no longer avaliable - it disappears. I played around, but can't seem to fix it.

  • Paul Paul admin's avatar

    Posted on Aug 22, 2006 (permalink)

    Hello Man,

    I suggest you open a support ticket and send us a simple running project along with the theme/skin used (CSS, images, DB backup and so on). In that way we can reproduce and pinpoint the problems you're facing on our side, understand the logic of your application and provide a solution.

    Thanks for your patience and cooperation,
    Paul
    the telerik team

  • Posted on Jan 28, 2007 (permalink)

    Man Wei! Jeez it's been hard to track you down dude! If it's the same Man Wei Tam that worked with Suki Pabla at DRW Trading in London circa '95/96 then it would be great if you could reply by mailing me at 'spabla1@hotmail.com'.

    And if this ain't THAT Man Wei Tam (and hey, how many of you can there truly be!) then I apologise for hijacking this thread!

    Regards,
    Suki Pabla
    (London)

  • paidin avatar

    Posted on Sep 30, 2007 (permalink)

    Hi Wei Tam

    Did u find the solution? i'm facing the same problem. The radtab disappears. It appear when the page have postback, and disappears when another postback triger.. I use iframe on the page. Does it will effect the radtabstrip?

  • Bartosz avatar

    Posted on Jun 23, 2008 (permalink)

    Is there any known solution for this tab problem? I'm using tabs to navigate my subpages. Every subpage is a separate iframe. The problem is that clicking on "some" controls inside the iframe makes the header of my page (where the tabs are located) dissapear. Only the iframe content is visible. Url stays the same. There is also a second problem. I have a rad window opened inside the iframe. When I click one of the buttons inside the radwindow, header with tabs dissapears also and what's more, whole content of the iframe "moves to the left" so that the radwindow is touching left border of the browser (normally it's absolutly positioned 800px form the left border).
    This description is not very strict, however I just want to know if somebody had similar problems and  maybe how it was solved.

  • Jan Montano avatar

    Posted on May 14, 2009 (permalink)

    Hi Bartosz,

    We also have the same problem. we used radtabstrip and iframes. and when selecting a date via RadDatePicker. The whole tabstrip disappears. This only happens in I.E. though and not in firefox.

    I just hope Telerik guys could help us solve this problem... :(

  • Alex Lawson avatar

    Posted on May 14, 2009 (permalink)

    Hi,

    I am not a Telerik guy but I have found a few workarounds for the postback\tabstrip which might help...

    With the tabstrip, I tend to use onclienttabselected and onclienttabselecting to capture save\load events - then either physically save the data or store an it as XML in a asp:hidden field.  I find that this allows me more granular control of the tab loading process which works in several scenarios.

    Example saving content displayed in iframe (subform implements 'update' js method):

    function FinishingTabSelected(sender, args) 
      // Initialise 
                        
      FinishingViewProcess(selectedTab.get_value(), selectedTab.get_text());     
                
    function FinishingTabSelecting(sender, args) 
      if (window.frames.ifmFinishingSegment) 
      { 
        // save 
        window.frames.ifmFinishingSegment.Update(); 
                         
      } 

    Anyway this is how I do it, but obviously this is influenced by project requirements and interface behaviour.


  • Donovan Cobb avatar

    Posted on Jan 7, 2010 (permalink)

    Our project had a similar problem, in IE browsers only, where if the user re-sized the browser window the telerik tabs would disappear.

    By updating our css with a fixed width the problem seems fixed.

    #aspnetForm
    {
        width: 1024px;
        margin-top: 0px;
    }

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > RadTabStrip Disappears