Tagged Questions
The datefield tag has no wiki summary.
5
votes
3answers
2k views
Only showing year in django admin, a YearField instead of DateField?
I've got a model where I need to store birth year. I'm using django admin. The person using this will be filling out loads of people every day, and DateField() shows too much (not interested in the ...
5
votes
3answers
4k views
Making Django forms.DateField show use local date format
I'm trying to find an easy way to build forms which show dates in the Australian format (dd/mm/yyyy). This was the only way I could find to do it. It seems like there should be a better solution.
...
3
votes
2answers
383 views
Django: How to set DateField to only accept Today & Future dates
I have been looking for ways to set my Django form to only accept dates that are today or days in the future. I currently have a jQuery datepicker on the frontend, but here is the form field to a ...
2
votes
1answer
253 views
ExtJS strange dateTimeField value in POST
I am using ExtJS version 3.0.0 and I really don't know why every time I submit a form with a datefield, the date is send to POST like this: Y-7-31 0:i:0 . I have not extended/modified the datefield ...
2
votes
2answers
119 views
How to make the format of a DateField to dd/mm/yyyy?
There is a DateField in my Form and I want the field value to be displayed in the format dd/mm/yyyy after dismissing ( choosing ) a date from the date-popup. How to achieve that ?
2
votes
1answer
774 views
ExtJS can't select month/year in datepicker
I'm using ExtJS 3 and when I want to select a date for the datepicker, I can only set day and month (through left/right arrows). The month/year panel comes down but quickly goes away, making it ...
2
votes
2answers
579 views
Subtract django.db.models.DateField from python's datetime.date to get age
In django, I want to get the age (in days) of an instance of a class. I tried doing that by subtracting its creation date field from today, but it does not seem to work properly. date.today() works ...
2
votes
2answers
1k views
Using datetime to compare with dates in Django
I have a question in Django on how you can compare dates to solve some solutions. For example I have a datefield in my models.py Like below.
class Invoice(models.Model):
payment_date = ...
2
votes
1answer
180 views
Django Monthly/quartarly grouping of DateField() data
I've got a django model which contains, among other things, a DateField() attribute:
class Table():
date = models.DateField()
value = models.FloatField()
I'm writing a view that groups this ...
2
votes
0answers
94 views
Django 1.2 DateField admin site problem
So, I'm making a Django 1.2 app, and I'm having a problem with the admin site. Here's the models.py:
from django.db import models
from django.contrib.auth.models import User
import datetime
class ...
2
votes
2answers
389 views
Storing DateTime field in lucene document
What is the best way to add datefield to a document (i just need YYYYMMDD)
Whats the best way to query against datefield
Im creating the datefield as the following
newDoc.Add(new Field("newsdate", ...
2
votes
1answer
476 views
SOLR date faceting and BC / BCE dates / negative date ranges
Date ranges including BC dates is this possible?
I would like to return facets for all years between 11000 BCE (BC) and 9000 BCE (BC) using SOLR.
A sample query might be with date ranges converted ...
2
votes
1answer
3k views
how to round the corners of a DateField in Flex 4
I'm using Flash builder, with flex 4 sdk,
I'm trying to create a DateField in which the TextInput component has rounded corners,
this is my code, for some reason it doesn't work, anyone knows why?
...
1
vote
1answer
82 views
How to get start date and end date of current month in AS3
I have 2 DateFields named startDate and endDate I want to set startDate's Selected date to Current months start date and endDate's Selected date to Current months End date.
How can I achieve this?
...
1
vote
4answers
230 views
Improve performance of querys in Postgresql with an index
I have in PostgreSQL tables, each with millions of records and more that one hundred fields.
One of them is a date field, which we filter by this in our queries. The creation of an index for this date ...
1
vote
3answers
427 views
Put DateField Icon to Left on its TextInput field
Regarding the dateField, there is the TextInput and the Icon. I want the icon to appear on the left side of the TextInput instead of it appearing on the right side as it is in the default state.
Can ...
1
vote
1answer
465 views
django forms DateField
I have a field in my my form named birthdate like:
class Personal_info_updateForm(forms.Form):
birthdate = forms.DateField(widget=SelectDateWidget(years=[y for y in range(1930,2050)]))
..
..
...
1
vote
1answer
2k views
ExtJS Having More Than One vType Applied To A Field
I have seen examples that use built-in vTypes and custom ones for a field, but never a custom and built-in vType together. For example, here is one I am currently using in my code which I have found ...
1
vote
1answer
170 views
How to restrict user to select date between range of Years in djnago?
Model.py
class Completion(models.Model):
start_date = models.DateField()
end_date = models.DateField()
batch = models.ForeignKey(Batch)
topic = models.ForeignKey(Topic)
In above ...
1
vote
1answer
297 views
Supress Today link in Django admin date widget
I would like to suppress the today link that is available by default in Django admin for a date field.
1
vote
1answer
1k views
J2ME: Get only year/month/day from DateField
I'm trying to use dateField to display which year, month or day has been selected in the calendar.
public DateField getDateField() {
dateField = new DateField("dateField", DateField.DATE);
...
1
vote
0answers
59 views
How to get sever date as defaultly selected in client side system calender in coldfusion?
Hai, I'm Deepa.I'm in an issue in coldfusion development.my doubt is that
how i got the current date as defaultly selected in my client pc,
while the client system date is wrong bt the server date is ...
1
vote
1answer
297 views
Blackberry DateField onfocus color
I have a dateField and when I iterate with the cursor over the various sub sections (date month year, etc) of the dateField the focus color by default is blue. When I unfocus the dateField the item ...
1
vote
2answers
420 views
Django DateField without year
Is it possible to have a DateField without they year? Or will I have to use a CharField? I am using the admin to edit the models.
1
vote
3answers
480 views
How can my django model DateField add 30 days to the provided value?
Hay guys, as the title suggests. I want to add 30 days to the DateField field. This is auto populated on creation of record using auto_now_add=True
Any ideas how to go about doing this?
Thanks
1
vote
1answer
853 views
A calender for Django DateField that only shows months and years?
In the django admin panel I currently have a DateField showing a nice Javascript calendar for inputting dates. However, I am only interested in the Month and Year. So I was wondering if it was ...
1
vote
2answers
4k views
Django: How to format a DateField's date representation?
I have a Form with a DateField. The formatted date look like this:
2009-10-03
How can i Format that? I want it look like this:
03.10.2009
I found a widget which renders it like this, but ...
1
vote
6answers
178 views
Working with dates in asp.net
How do I process a date that is input by the user and store it in the database in a date field? The date is entered by the user using a jquery datepicker in a text field.
Here are specific needs I ...
1
vote
2answers
4k views
Flex - Clear DateField programmatically
I cannot find any way to clear a DateField control programmatically after either a user has selected a date, or after I set myDateField.selectedDate via code.
Documentation only states how to clear ...
0
votes
1answer
22 views
Assign date to DateField
I want to assign date to Date field that is in DD-MM-YYYY format. That is I receive String Closure_Date which contains date in DD-MM-YYYY format. I want to assign that date to Date field like
...
0
votes
1answer
111 views
ExtJS DateField using datetime format
var todate = new Ext.form.DateField({
format: 'd/m/Y',
fieldLabel: '',
id: 'txtExpireDate',
name: 'txtExpireDate',
width: 150,
allowBlank: false,
...
0
votes
2answers
83 views
Django save string to date field
In my Django application I have a DateField (format 'YYYY-MM-DD'). When I try to save the string '2011-11-01' I get no error but my fields gets the NULL value.
I tried to do that with strptime ...
0
votes
2answers
81 views
mx:DateField and binding inside a Form
I have a Form with several FormItems and one of those include an mx:DateField. I am not sure how I should bind the DateField values. I have tried the following which none work:
<mx:DateField ...
0
votes
1answer
57 views
How to save a DateField on Blackberry?
I create a DateField and add it on screen1 like above image.
User can select "time" from this DateField.
I want to save this "time" and create a new DateField has a same "time" on screen2
How I can ...
0
votes
1answer
90 views
wrong time shown in Datefield related to TimeZones in Blackbbery
I have a problem relating to a countdown based on a DateField.
App
- set a DateField including a default Value (10 minutes)
- get the value of the field, start a thread and reduce the value every ...
0
votes
1answer
84 views
Flex 4 convert the month value of a date to its string equivalent
I'd like to convert a Flex 4 Date object to string in the format of "25 Aug 11".
I thought this would be easy using DateField.dateToString(today,"DD mmm YY"); however the code outputs 25 0808 11 ...
0
votes
1answer
272 views
Changing value of flex DateField.text property setting selectedDate property to null
I have a strange problem. Setting the text property of a flex DateField makes the selectedDate property of that DateField go to null.
I need to set the text property so that I can use a particular ...
0
votes
0answers
201 views
Flex 4.5, setting locale for datefield does not work
For some reason, setting the application locale to nl_NL does not affect my datefield components.
Dates are still displayed in english language/formatting.
I tried using the following:
But ...
0
votes
0answers
71 views
Re-position cfcalendar control for cfinput (type:datefield)
I would like to re-position the cfcalendar control within the cfinput form field instead of to the right or below.
The reason I say below is the framework environment I am using pushes the calendar ...
0
votes
1answer
314 views
Format date on Grid Panel not works, strange ..!
I have a gridPanel with CellEditing plugins .. !
I use datefield with renderer : Ext.util.Format.dateRenderer('Y/m/d')
The good format is dysplay , but when i get model from my grid , i have another ...
0
votes
1answer
483 views
Flex: Display month name in DateField control
I'm using the MX DateField control in Flex and want to display the date as 01 Jul 2011 or 01 July 2011. Does anyone know how to do this? I tried setting the formatString to "DD MMM YYYY" but it didn't ...
0
votes
1answer
324 views
Datefield modification Extjs4?
Is it possible to set the datefield in Extjs4 to be opend by default, to only have a small calendar with today date selected, to somehow skip clicking a datefield button to open a calendar and to hide ...
0
votes
1answer
646 views
ExtJS Datefield and change calling function
I am using ExtJS 3.3.1 and below is my code for a DateField. When the DateField is valid I would like it to call this function, however nothing is currently happening when I change the field.
new ...
0
votes
1answer
331 views
flex 4 datefield does not dispatch clear event
here is my datefield:
<mx:DateField id="date"
formatString="DD-MM-YYYY" selectableRange="{DTselectableRange}"
change="handleChange()" editable="true" clear="dateCleared(event)"/>
i ...
0
votes
2answers
258 views
Flex - how to detect event when a DateField is edited
How can I detect when a user changes a date field - specifically when they TYPE the date as I have set it to editable:
<mx:FormItem label="Assigned" x="220" y="59">
<mx:DateField ...
0
votes
1answer
307 views
How to set DateField value using a string containing the date and time?
I have the following string "29/05/2012 12:11 PM"
i want to add this value to a DateField
i did it like this:
String dateTime = "29/05/2012 12:11 PM";
long initialDateTime = ...
0
votes
1answer
250 views
Open Flex Datefield Calendar to Beginning of the SelectabeRange Instead of the End of it
I've got a Flex 3 datefield like this:
<mx:DateField id="myDateSelector"
selectableRange="{{ rangeStart : new Date(2011,0,1), rangeEnd: new Date(2011,3,30) }}"
/>
It ...
0
votes
0answers
56 views
How to force word wrapping in a DateField for a MIDP Application in BlackBerry 5?
I'm testing on device 8520 v5.0.0.592
I'm developing a MIDP application, and using the DateField, a long label doesn't WordWrap so the DateField widgets is placed outside the screen.
It is created ...
0
votes
1answer
344 views
How to remove Border from mx:DateField?
according the documentation borderThickness is an applicable style, but when I try to set it to anything (would prefer '0') it says "The style 'borderThickness' is excluded by type ...
0
votes
1answer
192 views
Focus Border for DateField
Is there a way to Set a a focus border on a datefield when it is selected and change the border to some other colour when we lose focus from the datefield.
Thanks