I created 2 pages in PHP
, to run on the collector:
It's running normally and doing what I want, the only thing I'm not liking is that it opens the digital keyboard and thus overrides my form
.
I can not directly disable the keyboard on the device because there are other applications that use it.
Could I block the virtual keyboard via PHP
?
Follow the field of my form
, if necessary:
<form class="form-horizontal" action="temp.php" method="post" name="frmControl">
<fieldset>
<div class="form-group">
<label for="tag" class="col-lg-2 control-label">TAG</label>
<div class="col-lg-3">
<input type="text" class="form-control" id="tag" name="tag">
</div>
</div>
</fieldset>
</form>