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

RadTabStrip width is increasing unexpectedly

2 Answers 66 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Kaushal Parik
Top achievements
Rank 1
Kaushal Parik asked on 27 Apr 2011, 12:44 PM
Hell friends,
I have used RadTabStrip in my one of my application asp.net page. When the page is rendering in the IE browser the RadTabStript width is going weird to some about 5310px width and stretching the page horizontally. When I see in the developer toolbar the width="5310px"  is being written to <ul> tag. This <ul> tag is part of RadTabStrip. Can anybody help me to solve this problem.

P.S: I have already tried to set ul { width:100%!important; } but not working

2 Answers, 1 is accepted

Sort by
0
Veronica
Telerik team
answered on 27 Apr 2011, 01:55 PM
Hi Kaushal Parik,

As the issue can not be reproduced on our online demos I suspect that there is something in your implementation that increases the width of the RadTabStrip. Could you please send me your project so I can inspect it and help you?

Best wishes,
Veronica Milcheva
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Sumit
Top achievements
Rank 1
answered on 02 Dec 2013, 09:02 AM
Veronica,
This issue occurs when we upgrade Telerik dll.
In older version i used at client side.
    var radTabStrip = document.getElementById(radTabStripId);
                    radTabStrip.style.height = 300;
"it works fine."

But after upgrading dll we can't use above code .
Below code works fine:
var radTabStrip = document.getElementById(radTabStripId);
radTabStrip.style.height = 300+ 'px';
Similarly , it can be done for width.


Tags
TabStrip
Asked by
Kaushal Parik
Top achievements
Rank 1
Answers by
Veronica
Telerik team
Sumit
Top achievements
Rank 1
Share this question
or