You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Ryan Seney (JIRA)" <de...@myfaces.apache.org> on 2007/03/15 19:45:09 UTC

[jira] Created: (TOMAHAWK-933) t:column attributes not populating HTML attributes correctly

t:column attributes not populating HTML <td> attributes correctly
-----------------------------------------------------------------

                 Key: TOMAHAWK-933
                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-933
             Project: MyFaces Tomahawk
          Issue Type: Bug
          Components: Column
    Affects Versions: 1.1.3
         Environment: Windows XP SP2, Tomcat 5.5.9.  Apache MyFaces
            Reporter: Ryan Seney
            Priority: Minor


Created a t:panelGrid element, and used t:column elements to format the display of a page on a web page.  According to the JavaDoc for the Tomahawk tag library, t:column should pass along the id and style attributes to the appropriate HTML elements.  When trying to apply simple styles to a column element, the resulting HTML does not contain any style attributes on the corresponding <td> element.  Also noticed that the id attribute I had specified was not propagated as well.

To give an idea of what I'm referring to:

<t:panelGrid>
  <t:column id="myid" style="vertical-align:bottom;">
    ....
  </t:column>
<t:panelGrid>

this yields:

<table>
  <tr>
    <td>
    ....
    </td>
   </tr>
</table>

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