scrollableDataTable rows are shifted to the left in case of gloab css style: 
body {text-align: center}
------------------------------------------------------------------------------------------------------

                 Key: RF-7453
                 URL: https://jira.jboss.org/jira/browse/RF-7453
             Project: RichFaces
          Issue Type: Bug
          Components: component-ScrollableDataTable
    Affects Versions: 3.3.1
         Environment: RichFaces 3.3.1, Internet Explorer 7
            Reporter: Denis Petrunin
            Priority: Minor


scrollableDataTable rows are shifted to the left in case of gloab css style: 
body {text-align: center}. The issue is reproducible in IE 7. There is no such 
issue in IE6, FF 3.0.11. Try the following code (backing bean must return not 
empty list).

<html
  xmlns="http://www.w3.org/1999/xhtml";
  xmlns:f="http://java.sun.com/jsf/core";
  xmlns:rich="http://richfaces.org/rich";
>
<head>
  <style type="text/css">
    body {text-align: center}
  </style>
</head>
<body>
  <rich:scrollableDataTable value="#{bean.items}" var="item" width="200px" 
height="100px">
    <rich:column width="70">
      <f:facet name="header">
        COLUMN
      </f:facet>
      #{item}
    </rich:column>
  </rich:scrollableDataTable>
</body>
</html>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to