Is there a possibility to submit my spring forms with non-Ajax-Requests?

Ive tried the global variante that worked
Code:
$(document).bind("mobileinit", function(){
  $.extend(  $.mobile , {
    ajaxEnabled: false
  });
});
but as I understood that after I put
Code:
ajaxEnabled: false
all requests will be non-ajax. But I need some ajax e.g. for validating field. Also
Code:
data-ajax="false"
isn't allowed in form:form tag...
Any ideas?

Cheers.