This question is locked. New answers and comments are not allowed.
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.