Ho un elemento di forma generico:
$form['date'] = array(
'#type' => 'textfield',
'#title' => t( 'Date' ),
);
Che voglio aggiungere il jpery ui datepicker a questo elemento. C'è un modo per farlo attraverso il modulo API o devo aggiungere quanto segue usando drupal_add_js:
$('#edit-date').datepicker();
O c'è un altro modo ancora migliore?