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

[Solved] Sitefinity skin causes display issues in CurrencyText/IE7

1 Answer 33 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.
Andreas Kluth
Top achievements
Rank 1
Andreas Kluth asked on 07 Dec 2011, 01:37 PM
We are currently working with Version 2011.3.1115.340 of Telerik.Web.Mvc and having an odd display issue in IE7 when using the "sitefinity" skin.

When we display a decimal using the following EditorTemplate:
<%@ Control Language="C#" Inherits="ProjectWeb.Mvc.Common.ViewUserControlBase<decimal?>" %>
<%=
  Html.Telerik().CurrencyTextBoxFor( m => m )
    .InputHtmlAttributes( new {style = "width:100%"} )
    .CurrencySymbol( "€" )
    .PositivePatternIndex( 3 )
    .NegativePatternIndex( 8 )
%>

The number is displayed multiple time with a offset by a few pixel (see attachment). Imho there is an issue in the template, using for instance the default template does work and yields to the expected result.

1 Answer, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 08 Dec 2011, 02:20 PM
Hello Andreas,

Thank you for reporting this issue. It occurs only in "real" IE7 and only with the Sitefinity skin. It is fixed now. Please delete or override the following background CSS style in telerik.sitefinity.css:

.t-widget,
.t-input
{
    border-width: 0;
    border-color: #ccc;
    background: none; /* remove this line */
}

If you prefer to override, rather than remove, you can add this to your application stylesheet:

input.t-input
{
      background-color: #fff ;
}

I have updated your Telerik points.

Greetings,
Dimo
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now
Tags
NumericTextBox
Asked by
Andreas Kluth
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or