Re: ComboBox

2024-09-03 Thread Thirumalai Samy.M
Hey Guys, I have some question? How to convert Web Application to Software? How to give a Common Directory? On Tuesday, July 16, 2024 at 8:37:33 PM UTC+5:30 Gene Buchite wrote: > Hey! Did you ever find a solution to this problem? I found this > https://github.com/trevoreyre/autocomplete/tr

Re: ComboBox

2024-07-16 Thread Gene Buchite
Hey! Did you ever find a solution to this problem? I found this https://github.com/trevoreyre/autocomplete/tree/master/packages/autocomplete-js and it works well : I fill it with > 26,000 choices and it handles it better that anything else I have found. On Sunday, June 5, 2022 at 4:58:07

Re: ComboBox

2022-06-05 Thread Phil Parkin
Thanks for the responses. *rgam* - I appreciate what you are saying. I think it is roughly what I am doing now, but it is a bit clumsy in that the user (of a financial application) will typically have a list of regular customers to select from, and also may have other customers that are one-o

Re: ComboBox

2022-06-04 Thread Ryan Nowakowski
The HTML element you probably want is a datalist[1]. There's no built-in Django support for datalist[2] so you'll probably need to create a custom widget. [1] https://stackoverflow.com/a/14614750 [2] https://code.djangoproject.com/ticket/32125 On May 31, 2022 11:52:31 AM CDT, Phil Parkin wrote:

Re: ComboBox

2022-06-01 Thread Roger Gammans
Hi If any arbitrary text is allowable, then at the model level I'd just use a CharField. I wouldn't add a choices= argument to the field unless is the value is strictly constrained to those choice as other test would then fail validation. At the Form level, I'm not sure. I'd probably work just mi

ComboBox

2022-05-31 Thread Phil Parkin
Hi all I am converting a desktop application to Django web application. The desktop app uses comboboxes (editable dropdown/select). Is their any elegant way of applying the same functionality in Django? Stack Overflow etc. all seem to be about dropdown select lists only. I can see ways of doin

RES: Filtering combobox according to a project list created by logged user

2020-10-26 Thread Samuel Nogueira
21:45Para: Django usersAssunto: Filtering combobox according to a project list created by logged user Hi everyone! I am newbe in Django and I have a question.  I am creating a multi-tenanci application and I need to filter the combobox according to projects created by logged users, but I have the followi

Filtering combobox according to a project list created by logged user

2020-10-25 Thread Gabriel
Hi everyone! I am newbe in Django and I have a question. I am creating a multi-tenanci application and I need to filter the combobox according to projects created by logged users, but I have the following message: *AttributeError at /requisitos/cadastrarRequisito/ 'WSGIRequest'

Re: combobox prepopulated to only related objects to "self"

2012-08-01 Thread Ignacio Soto
ry product. >> >> so i want to have a group with many products and one is the "primary >> product". >> >> but the primaryproduct field in group will be prepopulated with only the >> related products to this group. >> >> >> how i prepop

Re: combobox prepopulated to only related objects to "self"

2012-08-01 Thread Anton Baklanov
nd Group has foreignKey to Product to select primary product. > > so i want to have a group with many products and one is the "primary > product". > > but the primaryproduct field in group will be prepopulated with only the > related products to this group. > > >

combobox prepopulated to only related objects to "self"

2012-07-31 Thread Ignacio Soto
so i want to have a group with many products and one is the "primary product". but the primaryproduct field in group will be prepopulated with only the related products to this group. how i prepopulate the select(combobox) with the reverse query ? -- You received this message

AW: combobox

2011-02-27 Thread Szabo, Patrick (LNG-VIE)
users@googlegroups.com [mailto:django-users@googlegroups.com] Im Auftrag von Marc DM Gesendet: Freitag, 25. Februar 2011 19:36 An: Django users Betreff: Re: combobox On Feb 25, 11:18 am, "Szabo, Patrick \(LNG-VIE\)" wrote: > Hi, > > I was trying to get "An AJAX Sele

Re: combobox

2011-02-25 Thread Marc DM
ango (correct me > if I'm wrong.) > > Is there an alternative or a way to make it work with the newest version > ?! If you're using jQuery, you could take a look at the combobox example on the jQueryUI autocomplete page. http://jqueryui.com/demos/autocomplete/#combobox The

Re: combobox

2011-02-25 Thread Norberto Leite
"WARNING: This write-up is quite old, and has not been updated to use newforms." N. On Fri, Feb 25, 2011 at 12:18 PM, Szabo, Patrick (LNG-VIE) < patrick.sz...@lexisnexis.at> wrote: > Hi, > > > I was trying to get „An AJAX Select Widget for Django” ( > http://code.djangoproject.com/wiki/AJAXWidg

combobox

2011-02-25 Thread Szabo, Patrick (LNG-VIE)
Hi, I was trying to get "An AJAX Select Widget for Django" (http://code.djangoproject.com/wiki/AJAXWidgetComboBox ) running but i found out that it doesn't work with newer versions of django (correct me if I'm wrong.) Is there an alternative or a way to make it work with the newest version

Display dashes in the admin site combobox

2009-06-04 Thread james
decimal_places=2) vat_code = models.DecimalField (max_digits=4,decimal_places=2,choices=settings.VAT_CODES,) # vat_code = models.CharField (max_length=7,choices=settings.VAT_CODES,) But when I try the admin interface the vat_code combobox give all dashes when I will change the product vat_cod