Giter Club home page Giter Club logo

Comments (6)

brad avatar brad commented on August 16, 2024

@rvanlaar I worked around this issue by specifying the widget in the __init__ method as described in this blog post:

http://nanvel.name/weblog/three-ways-change-widget-django-modelform/

This has the added benefit of translating the widget dropdown items into the language of the user's browser, instead of the language of the server.

from django-phonenumber-field.

jhagege avatar jhagege commented on August 16, 2024

Hi Brad, could you please write here your __init__ method, I can't figure out how to work it out.

Thanks a lot.

from django-phonenumber-field.

brad avatar brad commented on August 16, 2024

@cyberjoac Sure:

from django import forms
from phonenumber_field.widgets import PhoneNumberPrefixWidget

class MyForm(forms.ModelForm):
    def __init__(self, *args, **kwargs):
        super(MyForm, self).__init__(*args, **kwargs)
        self.fields['phone_number'].widget = PhoneNumberPrefixWidget

from django-phonenumber-field.

mane-sandeep avatar mane-sandeep commented on August 16, 2024

Saw this error when LANGUAGE_CODE was set to 'en-us'. If it's set to say 'en', then the error disappears.

Fixed it by adding following to phonenumber_field/widgets.py

from django.utils.translation import to_locale

class PhonePrefixSelect(Select):
    def __init__(self, initial=None):
         #...
         locale = Locale(to_locale(translation.get_language()))
         #...

from django-phonenumber-field.

thedrow avatar thedrow commented on August 16, 2024

Is there a pull request about this issue?

from django-phonenumber-field.

amateja avatar amateja commented on August 16, 2024

Thank you for reporting. Our project has evolved since that time and this issue will be closed. Please update and reopen if you feel it is still applicable.

from django-phonenumber-field.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.