Hi,
I have been using IE 10.0.9200.17148.
The horizontal alignment problem occurs in IE while using RadNumericTextBox.
(In Chrome it works fine.)
I've created a script as follows.
aspx
cs
It works when the first page is open, but it doesn't work with later DataBind.
Please detail symptoms with reference to the attached avi file.
(Here is not able to attach a zip file, it has changed the extension to gif.)
Thanks,
Yoongu
I have been using IE 10.0.9200.17148.
The horizontal alignment problem occurs in IE while using RadNumericTextBox.
(In Chrome it works fine.)
I've created a script as follows.
aspx
<telerik:RadAjaxPanel ID="RadAjaxPanel2" runat="server" Height="100%" Width="100%" HorizontalAlign="NotSet" LoadingPanelID="baseLoadingPanel" OnAjaxRequest="RadAjaxPanel2_AjaxRequest"> <asp:FormView ID="detailsView" runat="server" OnDataBound="detailsView_DataBound"> <telerik:RadNumericTextBox ID="sphR" runat="server" Width="100%" DbValue='<%# Eval("sphR") %>' Number="0" ReadOnly="True"> </telerik:RadNumericTextBox> </asp:FormView></telerik:RadAjaxPanel>cs
protected void detailsView_DataBound(object sender, EventArgs e){ FormView item = (FormView)sender; RadNumericTextBox c = ((RadNumericTextBox)item.FindControl("sphR")); c.Style.Add("text-align", "right"); c.EnabledStyle.HorizontalAlign = HorizontalAlign.Right; }It works when the first page is open, but it doesn't work with later DataBind.
Please detail symptoms with reference to the attached avi file.
(Here is not able to attach a zip file, it has changed the extension to gif.)
Thanks,
Yoongu
