or
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Numeric_Bug.aspx.vb" Inherits="Elan.Web.Numeric_Bug" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title></title> <style type="text/css"> .disabledNumericTextbox { color: Red; } .disabledNumericTextboxBroken { color: Red !important; } </style></head><body> <form runat="server" id="form1"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> <div style="padding: 50px; border: 1px solid #ccc"> <telerik:RadNumericTextBox runat="server" ID="RadNumericTextBox3" ReadOnly="true" ReadOnlyStyle-CssClass="disabledNumericTextbox" NumberFormat-DecimalDigits="2" Value="80000.85" Width="110" ReadOnlyStyle-HorizontalAlign="Right" /> <telerik:RadNumericTextBox runat="server" ID="RadNumericTextBox4" ReadOnly="true" Value="80000.85" ReadOnlyStyle-CssClass="disabledNumericTextboxBroken" NumberFormat-DecimalDigits="2" Width="110" ReadOnlyStyle-HorizontalAlign="Right" /> </div> <telerik:RadWindowManager ID="RadWindowManager1" ShowContentDuringLoad="false" VisibleStatusbar="false" ReloadOnShow="true" runat="server" EnableShadow="true" /> </form></body></html>in Telerik.Web.UI_2012_1_411_Dev input fields width is now arbitrary set to 154px:
.RadForm.rfdTextbox input[type="text"], .RadForm.rfdTextbox input[type="password"], .RadForm.rfdTextbox input[type="search"], .RadForm.rfdTextbox input[type="url"], .RadForm.rfdTextbox input[type="tel"], .RadForm.rfdTextbox input[type="email"] (ligne 1)
{
width: 154px;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 3px;
padding-left: 2px;
height: auto;
line-height: normal;
}
Is there some good reason for that?
Thanks :-)
var grid = $find("<%=RadGrid2.ClientID %>")
just returns null. Have tried everything I can think of but to no avail. My RadGrid is just sitting inside a div in context of the page. Any thoughts? Thanks!