fix date selector value fill back problem

This commit is contained in:
Matthew K. Fu JuYuan 2012-04-13 12:47:57 +08:00
parent d2e77d6bf8
commit fe59446c16
1 changed files with 5 additions and 3 deletions

View File

@ -32,13 +32,15 @@
today = today.format('isoDate');
var state = false;
var arr = state ? "▼" : "▲"
var start_date = <%= "'#{@ad_image.post_date.strftime('%Y / %m / %d')}'"%> || today
var end_date = <%= "'#{@ad_image.unpost_date.strftime('%Y / %m / %d')}'"%> || today
//calendarRange
$('#calendarRange .showDate').html(today+" - "+today)
$('#calendarRange .calendarInput').val(today+" - "+today);
$('#calendarRange .showDate').html(start_date+" - "+end_date)
$('#calendarRange .calendarInput').val(start_date+" - "+end_date);
$('#calendarRange #widgetCalendar').DatePicker({
flat: true,
format: 'Y / m / d',
date: today,
date: [start_date,end_date],
calendars: 1,
mode: 'range',
starts: 1,