URL error message when opening the Input Date field on Blackberry using WebWorks and jQuery 1.8.2

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!

+7
jquery html jquery-mobile blackberry blackberry-webworks
source share
1 answer

BlackBerry Webworks , JQuery Mobile, and Normal JQuery have been updated since then (especially in web projects in this case), so I would recommend getting the latest copies anyway.

This seems like a problem with the browser, but it seems to be fixed in subsequent releases of WebWorks (I took your code, put it in a new simulator, and everything worked out fine). Try updating and see if you can play it.

If you can’t update, I would recommend using JQuery Mobile DatePicker or another one that you prefer

0
source share

All Articles