Toolbar: col elements should use CSS for width
----------------------------------------------
Key: RF-11831
URL:
https://issues.jboss.org/browse/RF-11831
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-menu
Affects Versions: 4.1.0.Final
Reporter: Pavol Pitonak
Toolbar generates <col> elements with attribute "width" which should be
replaced with CSS. Attribute width is obsolete in HTML5.
{code:xml}
<rich:toolbar height="26" itemSeparator="grid">
<rich:toolbarGroup>
<h:graphicImage value="/images/icons/create_doc.gif"
styleClass="pic" alt="create_doc" />
<h:graphicImage value="/images/icons/create_folder.gif"
styleClass="pic" alt="create_folder" />
<h:graphicImage value="/images/icons/copy.gif" styleClass="pic"
alt="copy" />
</rich:toolbarGroup>
...
{code}
{code:xml}
<table border="0" cellpadding="0" cellspacing="0"
class="rf-tb " height="26px" id="j_idt1923"
width="100%">
<col width="1px" />
<col width="1px" />
<col width="1px" />
...
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira