Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
4.1.3
-
None
Description
The DropdownDatePicker and DropdownTimePicker components overwrite the HTML tag specified in the page template with <div>. Instead they should use the tag specified in the template.
DropdownTimePicker.java line 61:
writer.begin("div");
should be
writer.begin(getTemplateTagName());
DropdownDatePicker.java line 75:
writer.begin("div");
should be
writer.begin(getTemplateTagName());