;$Id$

-- SUMMARY --

The autocomplete module add autocomplete functionality in any text field.
You can add autocomplete suggestions in two way :
with your own query or by Views module.

-- REQUIREMENTS --

jQuery UI.
Autocomplete Element


-- INSTALLATION --

Install as usual, see http://drupal.org/node/70151 for further information.
Set permission for frontend and backend.

-- CONFIGURATION --

You can configure new autocomplete field going to admin/build/autocomplete.

1. You can select Sql or View.
    If you select Sql you must type only your own sql in standard drupal sql, ie:
    SELECT title FROM {node} WHERE title like '%s%%'
    If you select Views, before you must create a view with an exposed filter. and insert the name of the filter in autocomplete module. 

2. Now insert the id of html text field, ie: 
   <input type="text" id="test-field" name="test-field">
   you must insert test-field (without #)

3. You can insert also the number of suggestions that an user can see.


-- CONTACT --

ziomizar - http://drupal.org/user/814348
