- signals.post_init.connect(self.post_init, sender=cls)
-
- def get_json(model_instance):
- return dumps(getattr(model_instance, self.attname, None))
- setattr(cls, 'get_%s_json' % self.name, get_json)
-
- def set_json(model_instance, json):
- return setattr(model_instance, self.attname, loads(json))
- setattr(cls, 'set_%s_json' % self.name, set_json)
-
- def post_init(self, **kwargs):
- instance = kwargs.get('instance', None)
- value = self.value_from_object(instance)
- if (value):
- setattr(instance, self.attname, loads(value))
- else:
- setattr(instance, self.attname, None)
-
-
-class JQueryAutoCompleteWidget(forms.TextInput):
- def __init__(self, source, options=None, *args, **kwargs):
- self.source = source
- self.options = None
- if options:
- self.options = dumps(options)
- super(JQueryAutoCompleteWidget, self).__init__(*args, **kwargs)
-
- def render_js(self, field_id):
- source = "'%s'" % escape(self.source)
- options = ''
- if self.options:
- options += ', %s' % self.options
-
- return u'$(\'#%s\').autocomplete(%s%s);' % (field_id, source, options)
-
- def render(self, name, value=None, attrs=None):
- final_attrs = self.build_attrs(attrs, name=name)
- if value:
- final_attrs['value'] = smart_unicode(value)
-
- if not self.attrs.has_key('id'):
- final_attrs['id'] = 'id_%s' % name
-
- html = u'''<input type="text" %(attrs)s/>
- <script type="text/javascript">//<!--
- %(js)s//--></script>
- ''' % {
- 'attrs' : flatatt(final_attrs),
- 'js' : self.render_js(final_attrs['id']),
- }
-
- return mark_safe(html)
-
-
-class JQueryAutoCompleteField(forms.CharField):
- def __init__(self, source, options=None, *args, **kwargs):
- if 'widget' not in kwargs:
- kwargs['widget'] = JQueryAutoCompleteWidget(source, options)
-
- super(JQueryAutoCompleteField, self).__init__(*args, **kwargs)