How I want it to work:
I have list of buttons(type button) that trigger an Ajax call that add the that item to a list. This works as exactly as I want it except for the button looks ugly .
The problem:
When I try to replace the "button" with an "image button" the form is submitted, which is not what I want. Is there a way to add an image to a button that do not trigger a submit? Can I disable the submit for "image button"? Or shall I add the image using css on the button?
What is the difference between "button", "image button" and "submit"?
To make the type image_button act like an button is looked in system.module and found
"'#executes_submit_callback' => TRUE",
so change this to false will prevent submit function to be called on your image_button.Code from system.module:
Another thing that you might encounter is the validation error, to remove it just add the
"'#validate' => array()"
or if you want to run validation but ignore errors use"#limit_validation_errors' => array()"
. This also apply for button.Here is an example where you can experiment the above things and see when the validation and submit callback is triggered. Also a checkbox is included to show when validation errors occurs.