You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can set the type to text and also have a data attribute on your number input fields like, data-convert marking them to be converted to number type.
<inputtype="text" data-input="convert" />
Once the repeater is initialized, under the show property you can convert them all back to number type like,
$('.repeater').repeater({initEmpty: true,show: function(){// changing the manual input fields of number type to number type from textrepeater.find('input[data-input="convert"]').removeAttr('type').attr('type',"number")//continue...
<input type="number" name="money"/>
does not return value
The text was updated successfully, but these errors were encountered: