Michel Morelli ha scritto:
Hi all. I have this code in my hook_form_alter:
if ($form_id == 'XYZ') { $form['field_statename_value']['#autocomplete_path'] = 'admin/pastai/views/regione'; $form['field_county_value']['#autocomplete_path'] = 'admin/pastai/views/provincia'; $form['field_countryname_value']['#autocomplete_path'] = 'admin/pastai/views/countryName'; }
This code works but only for Administrator. When I use a normal user I can not see the ajax's circle in those fields.
In my hook_form_alter there is not check for user or roles or permission.
Tnx.
M.
One more info: this form is a view exposed form .
M.