Trouble with AHAH in chrome using change event
In chrome the change event doesn't fire when using autocomplete_path in chrome but in firefox and opera. Try and change the event to blur instead.
<?php
$form[$view]['log']['client'] = array(
'#prefix' => '<div id="block-log-wrapper">',
'#title' => t('Client'),
'#type' => 'textfield',
'#weight' => 1,
'#size' => 60,
'#autocomplete_path' => 'cc2_ahah/client',
'#default_value' => $client_default_value,
'#ahah' => array(
'event' => 'blur',
'path' => ahah_helper_path(array($view, 'proj_task')),
'wrapper' => 'project-ahah-wrapper',
'effect' => 'fade',
),
);
?>Knowledge keywords:
