DropdownDatePicker and DropdownTimePicker overwrite html tag used in template
-----------------------------------------------------------------------------

                 Key: TAPESTRY-1906
                 URL: https://issues.apache.org/jira/browse/TAPESTRY-1906
             Project: Tapestry
          Issue Type: Bug
          Components: Core Components, XHR/dhtml/Ajax
    Affects Versions: 4.1.3
            Reporter: Ulrich Stärk
             Fix For: 4.1.4


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());



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to