12-03-2012 10:38 PM
Has anyone else encountered issues with Blackberry 10 Dev Alpha, WebWorks 1.0.3.8 and jQuery Mobile BB10? I upgraded the SDK and the app I was working on has gone a bit wonky (not reconizing data themes, and other bugs). Wondering if it was my code, I created an app pointing to http://blackberry.github.com/jQueryMobile-BB10-The
Is it just me?
12-04-2012 11:47 AM
Can you post your config.xml so we can have a look? And are you sure you upgraded the OS on your device as well? If you could post your OS version just in case that would give us everything we need.
12-04-2012 11:54 AM
Here is my XML file (certain names removed for NDA purposes)
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="1.0.0.1" id="APP" xml:lang="en">
<author href="http://www.company.com/"
rim:copyright="Copyright 1998-2012 COMPANY">COMPANY</author>
<name>APP</name>
<content src="http://192.168.0.24/v1/?format=html&method=GetFeat
<access uri="http://192.168.0.24" subdomains="true" />
<access uri="*" subdomains="true" />
<feature id="blackberry.identity" required="true" version="1.0.0.0"/>
<feature id="blackberry.app.orientation">
<param name="mode" value="portrait" />
</feature>
</widget>
My OS version is 10.0.9.1103 - Model Blackberry 10 Dev Alpha
In this particular application, the action tab menu overflow has a white background. For the kitchen sink test app, here's my config.xml:
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="1.0.0.5" id="kitchensink" xml:lang="en">
<author href="http://www.company.com/"
rim:copyright="Copyright 1998-2012 My Corp">My Corp</author>
<name>KitchenSink</name>
<content src="http://blackberry.github.com/jQueryMobile-BB10-The
<access uri="*" subdomains="true"/>
<feature id="blackberry.identity" required="true" version="1.0.0.0"/>
</widget>
This does load the URL, but does not respond to any user interface (doesn't seem to register touch events).
Thank you!
12-04-2012 01:36 PM
The design is working fine for me. Are you using the latest version from Github? https://github.com/mdabydeen/jQueryMobile-BB10-The
12-04-2012 01:52 PM
Also, can you see if WebWorks behaves differently than the browser? Your config.xml looks good and you aren't using any api's at all in that test app, so i would expect 100% equivalent behaviour.
Please note: touch events were changed in the recent OS build and I'm sure the jQuery theme was updated to the latest. if you are running an older OS then touch events not firing the same is definitely a change that is expected.
12-04-2012 01:54 PM
That is the baffling part. It loads perfectly fine in the BB browser, just the Webworks app is messed up. I've just updated to the lastest JQM and am still experiencing the same issue. I'm hoping to test it on a Dev Alpha B device, to see if perhaps its a device issue.
12-14-2012 04:27 PM