É possível invocar uma função JS customizada em um retorno de chamada AJAX?
function MY_MODULE_ajax_callback() {
// Define a new array to hold our AJAX commands.
$ajax_commands = array();
// Create a new AJAX command that replaces the #page text with our own text.
$ajax_commands[] = [CUSTOM JS FUNCTION]
// Return our commandS
return array('#type' => 'ajax','#commands' => $commands);
}
Sim, ele é. Ou pelo menos deveria ser possível. Algum problema em particular?
—
Mołot 17/07/2013
esta parece ser uma duplicata de drupal.stackexchange.com/questions/18867/...
—
ErichBSchulz