Re: Django Smart Selects - What does 'models world readable' mean??

2017-07-02 Thread Jani Tiainen
forms to make data input > less error-prone and easier. There are quite a few projects like > django-smart-selects out there, but django-smart-selects seems to be quite > easy to implement. However, I don't understand the implications of the > warning for django-smart-selects - > >

Django Smart Selects - What does 'models world readable' mean??

2017-07-02 Thread Mark Phillips
I need to chain some select boxes in my admin forms to make data input less error-prone and easier. There are quite a few projects like django-smart-selects out there, but django-smart-selects seems to be quite easy to implement. However, I don't understand the implications of the warning

django-smart-selects: ChainedManyToManyField value not selected after saving data via django admin

2016-03-02 Thread Bernardo Garcia
I am working with django-smart-selects <https://github.com/digi604/django-smart-selects> via django admin form. The idea that I have is try a model chaining or deployment of value fields accord to previous value in a previous separate field. Accord to the first option value se

Re: Using Django Smart Selects to populate a dropdown menu within a form

2016-01-29 Thread Rafael E. Ferrero
only > ORANGE, APPLE, PEAR, etc. > Else, when the user selects VEGETABLES, I'd like the second dropdown to > show only LETTUCE, CABBAGE, CARROT, etc > > My current code follows (I kept it simple): the form shows two independent > dropdown menus. > > Unfortunately I've not bee

Using Django Smart Selects to populate a dropdown menu within a form

2016-01-29 Thread Andrea Pinna
shows two independent dropdown menus. Unfortunately I've not been able to adjust it as requested by django-smart-selects, e.g. by correctly modifying the Item model and the forms.py file. Could anyone help me, please? * The choices are stored

Re: django-smart-selects

2014-12-14 Thread Jorge Andrés Vergara Ebratt
> On Thursday, December 11, 2014 11:26:17 PM UTC-5, Jorge Andrés Vergara > Ebratt wrote: >> >> Hello everyone... >> >> I'm using django-smart-selects for my dependent selects, you know, like >> if you choose a Country only the cities from that country hav

Re: django-smart-selects

2014-12-14 Thread Collin Anderson
, and handle the dependent selects on your own using your own code. The dependent-selects seems easier to me. Collin On Thursday, December 11, 2014 11:26:17 PM UTC-5, Jorge Andrés Vergara Ebratt wrote: > > Hello everyone... > > I'm using django-smart-selects for my dependent selects, yo

django-smart-selects

2014-12-11 Thread Jorge Andrés Vergara Ebratt
Hello everyone... I'm using django-smart-selects for my dependent selects, you know, like if you choose a Country only the cities from that country have to come up in the second select. And it's working great, but now we've faced a problem.. We want to add search functionality to the selects, we

django-smart-selects ModelForm Issue

2014-05-07 Thread Venkatraman S
Hi, In the context of using django-smart-selects<https://github.com/digi604/django-smart-selects>: as anyone stumbled on an issue with a Model using ChainedFK and if the queryset of chained_field in the ModelForm is changed before rendering? ie., if person is the chained_field in my form