I am programming a Blackberry application using WebWorks 1.0.4.11, jQuery 1.8.2 and jQuery Mobile 1.3.
I tested the application, but an error occurs when clicking the <input> date field, which 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 "date" <input> , the option to enter the date is displayed on the phone screen briefly; but immediately after that, the URL error screen mentioned above appears. I tested Blackberry Z10 (versions 10.1 and 10.2), and the URL error screen does not appear in this version.
Error message:
Mistake. This web page is not available. Check the URL and try again.
The error is only on the Blackberry Z30 (version 10.2).
The error is also present in another type of <input> s, for example, "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!
jquery html jquery-mobile blackberry blackberry-webworks
gabrielapittari
source share