- Author:
- I159
- Posted:
- November 16, 2011
- Language:
- Python
- Version:
- Not specified
- Score:
- 0 (after 0 ratings)
if you have multiple choice field in front and you need just a string contains chosen values this is it! Unicode encoding row related with another snippet - "Switched value typed choice field", In typical cases, you do not need to call additional methods.
1 2 3 4 5 6 7 8 9 10 11 12 | class MultipleTypedChoiceModelField(models.Field):
"""
Saving value of all the checked checkboxes in the string
"""
def get_internal_type(self):
return 'MultipleTypedChoiceModelField'
def get_prep_value(self, value):
# In typical cases, you do not need to call additional methods,
# as incoming list already contains strings.
unicoded_val = [val.__unicode__() for val in value]
return ', '.join(unicoded_val)
|
More like this
- find even number by Rajeev529 2 weeks, 1 day ago
- Form field with fixed value by roam 1 month ago
- New Snippet! by Antoliny0919 1 month, 1 week ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 4 months ago
- get_object_or_none by azwdevops 7 months, 3 weeks ago
Comments
Please login first before commenting.