I'm programing an app for Blackberry using WebWorks 1.0.4.11, jQuery 1.8.2 and jQuery Mobile 1.3.
I've tested the app, but an error is appearing when I tap a date <input>
field that is formed by the following HTML:
<div data-role="fieldcontain">
<label for="fecha">Fecha de Nacimiento</label>
<input type="date" name="fecha" id="fecha" value="" placeholder="Fecha de nacimiento" />
</div>
When I press the "date" <input>
, the phone screen briefly shows the option to enter the date; but immediately after that, the URL error screen mentioned above appears.
I tested with a Blackberry Z10 (versions 10.1 and 10.2), and the URL error screen is not appearing with this versions.
The error message is:
Error. This webpage is unavailable. Check the URL and try again.
The error is only on a Blackberry Z30 (version 10.2).
The error is also present in other type of <input>
s, like "select":
<div data-role="fieldcontain">
<label for="pais" class="select">Pais*</label>
<select name="pais" id="pais" onchange="optionCheck()">
<option value="Seleccione Uno" selected>Seleccione Uno</option>
<option value="Argentina">Argentina</option></select></div>
...
</select>
</div>
Any suggestions ??
Thanks!