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

[Solved] Several NumericTextBoxes with identical names

0 Answers 17 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.
Max
Top achievements
Rank 1
Max asked on 06 Feb 2011, 02:41 PM

Hello! I need to submit several inputs with identical names:

<%
          for (int m = 0; m < 5; m++)
            { %>
<%=Html.Telerik().IntegerTextBox().MinValue(1).MaxValue(Int32.MaxValue)
     .InputHtmlAttributes(new { Id = "Input" + m.ToString() }).Name("Values")%>
  
<% } %}

First input works fine, but spinner and input validation don't work in others.

Please, help. Thanks.

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