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

vertical scroolbar 2; in FF und Co OK but in IE doesnt work

1 Answer 27 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Marcus
Top achievements
Rank 1
Marcus asked on 14 Nov 2011, 10:33 PM
With FF and Co OK, but with IE I dont see the vertical scroll bar ...(after I fill the div with a real huge table (not a kendo grid, native html table)
...
var tabStrip = $("#tabstrip").kendoTabStrip();
...

<div id="tabstrip">
     <ul>
         <li>Table</li>
   <li>Email Log</li>
   <li>Top User</li>
     </ul>
  <!-- first tab -->
     <div style="overflow:scroll;min-height:450px;">Please select dates and click Get Report.</div>
  <!-- second tab -->
     <div style="min-height:300px;">To send emails please click on Email Report.</div>
   <!-- third tab -->
     <div style="min-height:800px;">Please select dates and click get Report.</div>

 </div>
...

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 15 Nov 2011, 09:38 AM
Hello Marcus,

The observed problem is caused by jQuery firing the animation complete event too early. This results in your custom overflow style not preserved correctly.

We have fixed the issue. As a temporary workaround, you can disable the TabStrip animations:

$("#tabstrip").kendoTabStrip({
   animation: false
});


I have updated your Telerik points.

Best wishes,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
TabStrip
Asked by
Marcus
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or