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

[Solved] bug: Problem with NumericTextBox on TabStrip while scrolling

1 Answer 95 Views
NumericTextBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Igor Stanek
Top achievements
Rank 1
Igor Stanek asked on 29 Jul 2011, 03:58 PM

Hello,

I would like to announce a behavior which looks like a bug,


I use Html.Telerik().TabStrip() and Html.Telerik().NumericTextBoxFor as inner component in it (see attached screenshot - telerik_001.png),

Now, when I move down in the given tabstrip with scrollbar NumericTextBox starts behave a little strange. It moves down, but its number value remains in the same place, as if it has an absolute position (see attached screenshot - telerik_002.png).

Is there anything I can do (workaround) to resolve this bug?

We use latest realease version of Telerik ASP.NET MVC components - Q2_2011_715 for ASP.NET MVC 3.

Thank you.

Best regards

1 Answer, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 01 Aug 2011, 08:33 AM
Hello Igor,

This is a known bug of Internet Explorer related to positioned elements inside scrollable containers. Please add a position:relative style to the TabsTrip content wrapper using ContentHtmlAttributes().

items.Add().Text("Tab").ContentHtmlAttributes(new { style = "position:relative" })


Alternatively, you can use a CSS rule to be applied accross all TabStrip instances and pages:

.t-tabstrip  .t-content
{
        position: relative ;
}


Regards,
Dimo
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

Tags
NumericTextBox
Asked by
Igor Stanek
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or