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

radnumerictextbox doesn't work in ClientItemTemplate

0 Answers 56 Views
NumericTextBox
This is a migrated thread and some comments may be shown as answers.
agasthya
Top achievements
Rank 1
agasthya asked on 24 Jan 2018, 09:27 AM

Hi,

I want to have a Radnumeric Textbox "cssWorkload" in a table <td> element. I am using AJAX to initiate the Text box and do all the functionalities in My code. But when i run the code the Radnumeric text box does not show up when its under ClientItemTemplate.

 <ClientItemTemplate>
                                                    <table cellpadding="10px" border="0" cellspacing="3px" id="tblSelectedItems1">
                                                        <tr style="height: 18px;">
                                                            <td class="cssEmployee">
                                                                <span>
                                                                <asp:Label runat="server" ID="Label1">#= Text #</asp:Label>
                                                                <asp:HiddenField runat="server" ID="HiddenField1" Value='#= Value #' />
                                                            </span>
                                                             </td>
                                                             <td class="cssWorkload">
                                                                 <span>
                                                                   <telerik:RadNumericTextBox runat="server" Visible="true" ID="RadNumericTextBox1" Type="Number" 
                                                                            RenderMode="Auto" AutoPostBack="True" >
                                                                            <NumberFormat DecimalDigits="0"></NumberFormat>
                                                                            <ClientSettings showbutton="true"></ClientSettings>
                                                                            <ClientEvents OnLoad="Load"/>
                                                                    </telerik:RadNumericTextBox>
                                                                 </span>
                                                             </td>
                                                         </tr>
                                                      </table>
                                               
        </ClientItemTemplate>

No answers yet. Maybe you can help?

Tags
NumericTextBox
Asked by
agasthya
Top achievements
Rank 1
Share this question
or