Suggestion for 'input_date_tag' function enhancement:
In FormHelper line 737:
Original code:
$html .= content_tag('button', $calendar_button, array('type' => 'button', 'disabled' => 'disabled', 'onclick' => 'return false', 'id' => $id_calendarButton));
My code:
$html .= ' '.input_tag('button', $calendar_button, array('type' => 'button', 'disabled' => 'disabled', 'onclick' => 'return false', 'id' => $id_calendarButton, 'name' => $id_calendarButton, 'class' => 'trigger'));
Reason:
- <input type="button" value="something" /> is better skinable in CSS than <button>something</button>
- ' ' space between input field and the trigger button
- 'class' => 'trigger' default CSS selector
calendar-cs.js line 19:
Monday is start day of week in cs_CZ => change to:
Thanks.