Changes between Version 1 and Version 2 of YUI-Django-AutoComplete


Ignore:
Timestamp:
Oct 5, 2006, 7:12:15 AM (18 years ago)
Author:
RicardoBarrios
Comment:

little changes

Legend:

Unmodified
Added
Removed
Modified
  • YUI-Django-AutoComplete

    v1 v2  
    44
    55* [http://developer.yahoo.com/yui/] - used for AJAX and widget implementation.
     6* simplejson
    67
    78== Installation ==
    89
    9 * Install Yahoo! UI in media/yui or media/js
     10* Install Yahoo! UI in media/js
    1011
    1112== Example Use ==
     
    1415
    1516{{{
     17...
     18from django.utils import simplejson
     19
     20...
    1621def json_lookup(request, queryset, field, limit=5, login_required=False):
    1722    if login_required and not request.user.is_authenticated():
Back to Top