Django widgets handle the rendering of the HTML for form fields
0
votes
2answers
70 views
Django ModelForm with Select Widget - Use object.uid as default option value instead of object.id
I have a form inheriting from ModelForm as such:
class ChildModel(ModelForm):
class Meta:
model = Documents
fields = ('secretdocs')
widgets = {
...
0
votes
0answers
24 views
Add attributes to js media fields in django's widgets
I am using AMD loading with requirejs for most of my javascript but I have trouble using them in django's widgets.
Django's documentation states that a media should be embedded in the following way:
...
0
votes
0answers
49 views
Custom django field in admin-form
I`m trying to create form field for Django admin backend
In database it should be CharField field, contains "0" and "1" values with 24*7 length.
In admin panels I want to see them as 7 fields with 24 ...
0
votes
1answer
61 views
Python/Django Forms: Dynamic variable creation and access for Form fields
I have a django form class only with one widget. I would like to give a name to this widget like <select name="custom_name"></select> but Django takes the name of the variable and gives it ...
0
votes
0answers
10 views
programming a custom django multiselect field auto updating its own content
how should i program a custom multiselect field, like the one in the django-admin interface with the green plus button on it. i've been using the widgets provided by floppyforms and just calling a ...
0
votes
0answers
22 views
How do I use widgets to add an attribute to a form in Django?
I'm trying to get a placeholder to show up for a form field but I'm doing something wrong with my form fields. Any thoughts? I've got the following classes:
class EditField(forms.CharField):
def ...
0
votes
0answers
31 views
Django. HowTo map successfully a models ImageField attribute to a HiddenInput form widget?
Context :
For a given dictionary "d" which is passed to a "PictureForm", a ModelForm based on "Picture" model:
>>> d = {'inline':'', 'project':1, 'path':'path/to/image'}
>>> print ...
0
votes
1answer
54 views
Django - custom widget - why does Django think I don't have 'attrs'?
EDIT: Using Django 1.3
I've built a Custom Widget to educate myself but I can't get past a problem where when the page is fetched Django says that:
'FooTestWidget' object has no attribute 'attrs'
...
0
votes
0answers
77 views
Django m2m comma-separated form field
My scenario: I have an m2m field for tags bound to a blogpost model:
class Tag(models.Model):
...
name = models.CharField(max_length=255, unique=True)
class Post(models.Model):
...
...
0
votes
0answers
60 views
Django admin: override widgets in an inline model?
Hello again StackOverflow!
I have installed the file_resubmit mixin, solely for use with the admin. I was dubious it would work on my CustomFileField but it seems to. It remembers filenames for all ...
1
vote
1answer
128 views
django admin how to display widget on readonly field
I want to display my widget on the field at django admin when the field is readonly.
admin.py
class AudioTrackAdminInline(admin.StackedInline):
model = AudioTrack
form = AudioTrackForm
...
2
votes
2answers
137 views
FilteredSelectMultiple widget on field feincms content type
I have a custom made content type in FeinCMS.
class DownloadsContent(models.Model):
title = models.CharField(max_length=200, verbose_name=_('title'))
files = ...
0
votes
1answer
63 views
Change CharField value after init
I have a page "A" with some CharField to fill programmatically. The value to fill come from another page "B", opened by javascript code executed only when the page is showed (after the init). This is ...
0
votes
1answer
104 views
Accessing ModelChoiceField queryset from custom widget
I have a form that has a ModelChoiceField. I have created a custom widget for dealing with ModelChoiceFields, the widget extends forms.TextInput, so:
class SelectWidget(forms.TextInput):
def ...
0
votes
2answers
135 views
Apply css class to forms.RadioSelect widget
I am using a ModelForm and trying to set a css class on a Django forms.RadioSelect widget like
class Meta:
model = models.MyModel
fields = ('rating',)
widgets = {
'rating': ...
4
votes
1answer
232 views
Custom widget not validating only the first time
I've created a custom widget OrderedCheckboxSelectMultiple, I'm just replacing <ul> for <ol> and adding some classes to <label>, <li>, etc.:
class ...
0
votes
1answer
58 views
Create custom django widget for timefield with now option
I have models with datetimefields and timefields. When the user interacts with these fields in a form they often just need to enter the current time. I need a now link almost exactly like what shows ...
0
votes
1answer
62 views
How do I access the id of a Django Widget from the widget definition?
I am creating a custom widget for a datetime field:
class MySplitDateTimeWidget(forms.SplitDateTimeWidget):
def format_output(self, rendered_widgets):
mytimeid = ...
0
votes
1answer
78 views
How can I extend a django admin widget so it's still optional?
I've been scouring the internet for a couple days and couldn't find anything, so I'm hoping you guys can point me in the right direction. I'm trying to customize the django admin so that a button ...
2
votes
2answers
101 views
How can I override the 'type' attribute of a ModelForm in Django?
Specifically, I would like to render date widget in a form but I would like it to 'be' HTML5 (so I can just forget about the javascript or whatever and trust Chrome, Opera and Safari to display the ...
1
vote
1answer
92 views
how to delete the -— generated by select choices
i have a question on how do i get rid of the ---- from the select drop down menu not to show the null(---) in the first row. I found from stackoverflow on RadioSelect and i manage to get rid of the ...
0
votes
0answers
68 views
How to access MultiValueField's SubFields in template
I am trying to get a nice presentatin of a DatTime picker following this approach.
So I have a subclass of MultiValueField with two SubFields and a widget which is a subclass of MultiWidget and which ...
1
vote
0answers
105 views
need a time widget or clock widget
is there anything like a timewidget or clock widget in Django which will help me to input data into a form for appointment date (like we have calendar or date widget).
i have my date widget working ...
0
votes
0answers
83 views
making Django form valid using customized widget
I have a Django form that worked fine until I changed from using SelectDateWidgets to using a customized class called MySelectDateWidgets which changed the default options for the drop down menu of ...
0
votes
1answer
243 views
selectdatewidget set default month and day
How can I set selectDateWidget day and month options to default as 1st January but leave the year option intact.
Now I am doing:
day = datetime.date.today()
lessTime = ...
0
votes
0answers
228 views
Django bootstrap button widget
Is there any way to create a widget that generates twitter bootstrap buttons? I am needing to put some buttons in the middle of the form. (or html that are not inputs)
Tried as follows:
class ...
1
vote
1answer
112 views
Django Form Field Problems with Cloudinary's CloudinaryImage Class
I've got a Django form that is displaying a ClearableFileInput for a CloudinaryImage (from Cloudinary). Things are working great, except when I display the form field, I get a mangled href in the ...
0
votes
1answer
73 views
How do I override django.contrib.comments field widgets?
I'm not looking to add inline styles to the comment field in my comment form. I'm looking for a way to add the placeholder attribute to my field. What's the proper way to do this?
I was searching for ...
0
votes
1answer
554 views
Django - Time range widget
I'd like to use jQueryUI Slider as a widget allowing to configure business hours.
So I did this models:
WEEKDAYS = [
(1, _("Monday")),
(2, _("Tuesday")),
(3, _("Wednesday")),
(4, ...
1
vote
2answers
445 views
Render widget in django template
I have an awesome widget to display information, and I want to use it in a template but without using a form.
My template is used only to display info, there is no form to be submited. How can I ...
0
votes
1answer
146 views
How to change year options of django's selectDateWidget
I want to use django's selectDateWidget for a form but the options for years are from 2012-2021. I need to display past years and probably up to 1980. How can I modify selectDateWidget?
lessTime = ...
0
votes
1answer
48 views
Create a select widget in two parts, the first selecting items in the second dynamically
Is there any pre-done widget to incorporate into my django code which create an very special widget?
Let's say that I have a database with
# this is simplified code to keep only problematic stuff
...
0
votes
1answer
480 views
How to work with time picker widget in Django template?
I am working on a Django based Application, and i stuck in some place where i want to save a time given by the user and the no of days (Monday-Sunday) in my database.
user will choose a time from ...
1
vote
1answer
126 views
Django Contrib Comments: How to override the comment's textarea widget?
Using django.contrib.comments, I've defined a custom comment app. I wanted to override the text area widget so that the textbox appears smaller.
So what I created was this:
#forms.py
class ...
2
votes
1answer
62 views
Override a Django form field from a different app
Django Guardian has two forms defined in admin.py, GroupManage and UserManage: https://github.com/lukaszb/django-guardian/blob/master/guardian/admin.py#L368
I would like to add auto-completion to ...
1
vote
1answer
148 views
Django form wont submit because of autocomplete widget field
I want to fill a text input in my form using an autocomplete widget that I have created using jquery ui. Everything works exactly how I want to, except when the form is submitted.
The problem is that ...
0
votes
0answers
86 views
Per subwidget labels in Django
When defining a form with a SelectDateWidget, how do I get it to render labels Year, Month, Day over the respective subwidgets
#forms.py
from django.forms.extra import SelectDateWidget
from django ...
0
votes
0answers
123 views
Django hidden field input, custom widget w/media rendering issues
I have a Django widget; it is a hidden input text field that has a JavaScript media file associated with it. This JavaScript media creates an ajax file uploader and requires 1 parameter; the id of the ...
0
votes
1answer
222 views
Django; adding variable to media files in a custom widget
I want to make a widget that has some media files, and I want to be able to pass in parameters that the media files have access to.
# in forms.py
class aCustomWidget(forms.TextInput):
class ...
0
votes
1answer
187 views
Django 1.4 Want to make birthdate field utilizing SelectDateWidget not required on my form
I am trying to create a form for the user to change their profile account information on their own. Currently I have it so they can update their first, last and username, gender and 'birthdate'. The ...
0
votes
1answer
179 views
Django DateTimePicker only shows up for superusers inside my app
I'm using django DateTimePicker widget -- AdminSplitDateTime() -- in event creating app, every thing goes fine when the loged in user has superuser permissions, but when normal user tries to access ...
1
vote
1answer
566 views
Django - DateTime Widget format
I'm trying to implement a DateTimePicker Widget.
Widget
class DateTimeWidget(forms.DateTimeInput):
class Media:
js = ('js/jquery-ui-timepicker-addon.js',)
def __init__(self, attrs=None):
...
0
votes
1answer
206 views
How to pass a variable to an inherited class in Python/Django?
This may be more of an OO Python question. But it came from this question I asked regarding Django.
So @burhan advised that instead of manually writing out my custom <select> and <option> ...
1
vote
2answers
282 views
Django - Specifying default attr for Custom widget
I have created this widget
class DateTimeWidget(forms.TextInput):
attr = {'class': 'datetimepicker'}
class Media:
js = ('js/jquery-ui-timepicker-addon.js',)
Then I use it on my form
class ...
0
votes
1answer
38 views
How to add Value to django Markitupwidget?
How to add value to this "form.content" before rendering
class myform(forms.Form):
title = forms.CharField(max_length = 30)
content = forms.CharField(widget=MarkItUpWidget())
...
0
votes
2answers
316 views
How to add default value to django-markitup widget?
Friends,I want to add default value to django MarkItUpWidget
title = forms.CharField(max_length = 30)
content = forms.CharField(widget=MarkItUpWidget())
2
votes
1answer
295 views
Django - Show BooleanField in a formset as one group of radio buttons
I have the following models:
class Profile(models.Model):
verified = models.BooleanField(default=False)
def primary_phone(self):
return self.phone_set.get(primary=True)
class ...
0
votes
2answers
528 views
Django: custom content in admin form
For one of my models, I want to show extra content in the change_form. Basically, my model looks like this:
class News(models.Model):
...
class NewsFromSource(models.Model):
news ...
6
votes
2answers
4k views
How to use jQuery UI Datepicker as a Django Widget?
Some of my Django 1.3 models have DateField properties. When a form is generated, I'd like to use the jQuery UI Datepicker instead of a plain text field. I understand that I could create new widgets ...
1
vote
2answers
549 views
Django - CheckboxSelectMultiple without “------” choice
How can I remove "------" from rendered choices?
I use in my model form:
widgets = {
'event_form': forms.CheckboxSelectMultiple(),
}
In model I have IntegerField with choices:
...
