- Author:
- behrooznobakht
- Posted:
- June 21, 2010
- Language:
- Python
- Version:
- 1.2
- Score:
- 0 (after 0 ratings)
This is a simple calendar widget in Django 1.2 for Jalali Calendar usages. It actually sends a Gregorian value to server, so if you need further manipulations, you can use GNU Jalali Calendar. You should also have JalaliJSCalendar set up in your project.
Also posted on: Django Jalali Calendar Widget
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | calbtn = u'''<img src="/static/images/cal.png" alt="calendar" id="%s_btn"
style="cursor: pointer; width: 18px; height:18px; vertical-align:middle; float: none;" title="Select date" />
<script type="text/javascript">
function onJalaliDateSelected(calendar, date) {
var e = document.getElementById("%s");
var str = calendar.date.getFullYear() + "-" + (calendar.date.getMonth() + 1) + "-" + calendar.date.getDate();
e.value = str;
}
Calendar.setup({
inputField : "%s_display",
button : "%s_btn",
ifFormat : "%s",
dateType : "jalali",
weekNumbers : false,
onUpdate : onJalaliDateSelected
});
</script>'''
class DateTimeWidget(forms.widgets.TextInput):
class Media:
css = {
'all': ('/static/styles/jscalendar/skins/calendar-system.css',)
}
js = (
'/static/js/jscalendar/jalali.js',
'/static/js/jscalendar/calendar.js',
'/static/js/jscalendar/calendar-setup.js',
'/static/js/jscalendar/lang/calendar-fa.js',
)
dformat = '%Y-%m-%d'
def render(self, name, value, attrs=None):
if value is None: value = ''
final_attrs = self.build_attrs(attrs, type=self.input_type, name=name)
if value != '':
try:
final_attrs['value'] = \
force_unicode(value.strftime(self.dformat))
except:
final_attrs['value'] = \
force_unicode(value)
if not final_attrs.has_key('id'):
final_attrs['id'] = u'%s_id' % (name)
id = final_attrs['id']
jsdformat = self.dformat #.replace('%', '%%')
cal = calbtn % (id, id, id, id, jsdformat)
parsed_atts = forms.util.flatatt(final_attrs)
a = u'<span><input type="text" id="%s_display" /><input type="hidden" %s/> %s%s</span>' % (id, parsed_atts, self.media, cal)
return mark_safe(a)
def value_from_datadict(self, data, files, name):
dtf = forms.fields.DEFAULT_DATETIME_INPUT_FORMATS
empty_values = forms.fields.EMPTY_VALUES
value = data.get(name, None)
if value in empty_values:
return None
if isinstance(value, datetime.datetime):
return value
if isinstance(value, datetime.date):
return datetime.datetime(value.year, value.month, value.day)
for format in dtf:
try:
return datetime.datetime(*time.strptime(value, format)[:6])
except ValueError:
continue
return None
def _has_changed(self, initial, data):
"""
Return True if data differs from initial.
Copy of parent's method, but modify value with strftime function before final comparsion
"""
if data is None:
data_value = u''
else:
data_value = data
if initial is None:
initial_value = u''
else:
initial_value = initial
try:
if force_unicode(initial_value.strftime(self.dformat)) != force_unicode(data_value.strftime(self.dformat)):
return True
except:
if force_unicode(initial_value) != force_unicode(data_value):
return True
return False
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
Please login first before commenting.