Hi all,
I'm currently working on a page including jquery mobile, and it try to submit a form.
I work with struts 2.0, and my submit button is like that :
<input type="submit" id="_registerDelivery" name="method:registerDelivery" value="Ajouter" data-role="none" form="edit-delivery-form">
The name attribute allow my form to be submitted to a specific method of my coreesponding struts java class action(registerDelivery)
Whithout jquery mobile all worked fine, but when I add the jquery mobile library, the form is no more submited to the specified method, but to the default one..
I'm really becoming crazy trying to avoid jquery mobile to destroy all my css/js stuff, but on this one, I have to say that I don't know what to do...
Do JQM do something I dont know on the form submission???
Thxs in advance, I would be realy glad to have some help.