Hello,
i have a simple grid with template columns. In the did template of a column i use a RadNumericTextBox.
When editing, the spinbuttons display the text "Spin UpSpin Down" behind the spin images...
when looking at the HTML i can see the following:
<a class="spinbutton up" href="javascript:void(0)" id="SN_Interface1_Content_102_SN_Planning_Unloading_AddEdit_HatchAddEdit1_RadGrid1_ctl00_ctl02_ctl03_rnt_Ton_SpinUpButton"><span>Spin Up</span></a> | |
<a class="spinbutton down" href="javascript:void(0)" id="SN_Interface1_Content_102_SN_Planning_Unloading_AddEdit_HatchAddEdit1_RadGrid1_ctl00_ctl02_ctl03_rnt_Ton_SpinDownButton"><span>Spin Down</span></a> | |
Why??
It ONLY happens in inline editing, when i use popup, its a goner...
This is my declaration in the aspx:
<telerik:GridTemplateColumn HeaderText="Hatch" SortExpression="Luiknummer" UniqueName="Luiknummer" > | |
<ItemTemplate> | |
<asp:Label runat="server" ID="lbl_Luiknummer" Text='<%# Eval("Luiknummer", "{0:N0}") %>'></asp:Label> | |
</ItemTemplate> | |
<EditItemTemplate> | |
<telerik:RadNumericTextBox ID="rnt_Luiknummer" runat="server" Type="Number" MaxValue="8" MinValue="1" MaxLength="1" ShowSpinButtons="True" NumberFormat-DecimalDigits="0" Skin="Office2007" DbValue='<%# Bind("Luiknummer") %>' Width="40px"></telerik:RadNumericTextBox> | |
<asp:RequiredFieldValidator ID="RequiredFieldValidator_rnt_Luiknummer" runat="server" ErrorMessage=" *" ControlToValidate="rnt_Luiknummer" Display="Dynamic" ></asp:RequiredFieldValidator> | |
</EditItemTemplate> | |
<HeaderStyle HorizontalAlign="Right" Width="100px" /> | |
<ItemStyle HorizontalAlign="Right" /> | |
</telerik:GridTemplateColumn> | |
FYI: "Luiknummer" is "hatchnumber" in english... :-)