I inserted a jqxNumberInput in a form.
<form class="form" id="form" target="_self" method="post" action="<?php echo site_url('/save_form');?>">
<div class="row input-block">
<div class="col-sm-1"><label>N° tasselli:</label></div><div class="col-sm-1"><div id='ntasselli' name='ntasselli'></div></div>
</div>
<div class='row input-block' style="margin-bottom: 20px;"><div class="col-sm-2 col-md-offset-1">
<input type="button" value="Salva" id="sendButton" />
</div></div>
</form>
<script type="text/javascript">
$(document).ready(function () {
$('#ntasselli').jqxNumberInput({width: '100%', height: 25, min: 0, digits: 3, decimalDigits: 0, spinButtons: true, theme: theme});
</script>
But on the php where the form data are posted, I don’t get the numeric value (for example 3), but the string with placeholders (for example __3)
Is there a way to solve this isssue?