first of all, i've tried Amar Ravikumar solution there, but it still doesn't work.
I have this piece of code :
$form['button'] = array(
'#type' => "button",
'#id' => "mymoduleAjaxButton",
'#value' => t("Process"),
'#ajax' => array(
'callback' => "mymodule_form_callback",
'wrapper' => "message",
'method' => "html",
),
);
And i have a canvas which contains many graphicals stuffs on which i can click.
When i click on a particular element, i want my ajax form to submit (like if i pressed the button).
Here is the js code:
// circle is a Kinetic.Circle object.
circle.on("click touchcancel tap", function() {
var fill = onClick(posX, posY);
this.setFill(fill);
layer.draw();
});
function onClick(x, y) {
// Some stuff
jQuery("#mymoduleAjaxButton").trigger("mousedown");
return "red";
}
As you can see, i'm following the advices given by Amar (see the first line), but i doesn't work. My circle color changes, but the form isn't submitted.
Other solutions i've tried:
jQuery("#mymoduleAjaxButton").trigger("click"); // Like mousedown
jQuery("#mymoduleAjaxForm").submit(); // It refreshes my page... Not what i want, otherwise i wouldn't use ajax
jQuery(document).ready(function() { jQuery("#mymoduleAjaxButton").trigger("click"); });
/* Replace the click by mousedown doesn't change anything too,
moreover i believe it's useless here to add this here... */
Does anyone know how i can perform that or know what i'm doing wrong? Thanks.
I had some trouble with this too, what worked for me was:
So instead of triggering the button's click event you trigger the forms submit event.
I read you are not working on this anymore but I thought I'd share anyway for the ones that come across this thread while searching for the same problem.