Custom HTML Template for Django 2.0 Autocomplete Widget

2017-12-14 Thread Da CodeKid
Is it possible to create a custom HTML Template, like Django-Autocomplete-Lite does by passing '*data-html:True*' attribute and overriding it's '*get_default_label*' method? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from t

Re: autocomplete widget

2010-01-11 Thread Sam Walters
ou have your widget set up to include the needed javascript that >> should be it. Honestly, the JS parts is more difficult than the django >> part. >> >> Hope that makes sense >> On Jan 8, 1:46 pm, nameless wrote: >> >> > Hi at all, I am looking for a wor

Re: autocomplete widget

2010-01-09 Thread nameless
e needed javascript that > should be it. Honestly, the JS parts is more difficult than the django > part. > > Hope that makes sense > On Jan 8, 1:46 pm, nameless wrote: > > > Hi at all, I am looking for a working simple example on autocomplete > > widget for for

Re: autocomplete widget

2010-01-09 Thread esatterwh...@wi.rr.com
d be it. Honestly, the JS parts is more difficult than the django part. Hope that makes sense On Jan 8, 1:46 pm, nameless wrote: > Hi at all, I am looking for a working simple example on autocomplete > widget for foreign key in Django. I have found many example but I > don't understa

autocomplete widget

2010-01-08 Thread nameless
Hi at all, I am looking for a working simple example on autocomplete widget for foreign key in Django. I have found many example but I don't understand and doesn't work. This is my model: class profile(models.Model): user = models.ForeignKey(User, unique=True) class profileForm