Tagged Questions
The newforms tag has no wiki summary.
22
votes
7answers
11k views
Define css class in django Forms
Assume I have a form
class SampleClass(forms.Form):
name = forms.CharField(max_length=30)
age = forms.IntegerField()
django_hacker = forms.BooleanField(required=False)
Is there a way ...
3
votes
6answers
2k views
Add class to Django label_tag() output
I need some way to add a class attribute to the output of the label_tag() method for a forms field.
I see that there is the ability to pass in an attrs dictionary and I have tested it in the shell ...
1
vote
1answer
142 views
Anyone know an up-to-date (September 2009) example of file-uploading in Django?
UPDATE : thanks to posters below, it's clear that the official documentation is up-to-date. Best to read that carefully rather than skim a bunch of other pages that turn up in Google.
I keep ...
0
votes
0answers
40 views
A logical error in SharePoint List NewForm
I have made two lists, where the first list contains data about different shipping companies. The second list contains data about different ships, where one of the collumns are a lookup to the first ...
0
votes
2answers
873 views
SharePoint Custom List Form doesn't validate required fields
My Story:
I had to customize the page NewForm.aspx, so I hidden the default ListFormWebPart and added a Custom List Form [DataFormWebPart] using SharePoint Designer.
My problem:
If required fields ...