Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: Grails-Calendar 1.0.0
-
Fix Version/s: Grails-Calendar 1.0.1
-
Component/s: None
-
Labels:None
-
Patch Submitted:Yes
Description
The CalendarTagLib uses the following:
<input type="text" id="$name" name="$name" disabled="true"/>
This results in the selected date not being added to the form on submit. Changing the tag to this:
<input type="text" id="$name" name="$name" readonly="true"/>
Will include this data element. Refer to this: http://www.htmlcodetutorial.com/forms/_INPUT_DISABLED.html