You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Ramesh Bandaru (JIRA)" <de...@myfaces.apache.org> on 2008/07/17 14:53:31 UTC

[jira] Created: (TRINIDAD-1158) Table grids visible on page at uneven location when tr:table used as child in PANELPOPUP component.

Table grids visible on page at uneven location when tr:table used as child in PANELPOPUP component.
---------------------------------------------------------------------------------------------------

                 Key: TRINIDAD-1158
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-1158
             Project: MyFaces Trinidad
          Issue Type: Bug
          Components: Components
    Affects Versions: 1.0.7-core, 1.0.4-core
         Environment: IE6,IE7
            Reporter: Ramesh Bandaru
            Priority: Minor


When tr:table is used as child for tr:panelPopup component then the table grids are visible on the page at top-left corner.
after clicking on panelPopup link grids disappers and reappers when any  other action performed.



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


[jira] Commented: (TRINIDAD-1158) Table grids visible on page at uneven location when tr:table used as child in PANELPOPUP component.

Posted by "Marek (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TRINIDAD-1158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12700540#action_12700540 ] 

Marek commented on TRINIDAD-1158:
---------------------------------

It seems to be CSS bug in IE

Proposed fix:  
PanelPopupRenderer line 415

oryginal:
private static final String _POPUP_CONTAINER_DIV_STYLES = "position:absolute; top:0px; left:0px; visibility:hidden;";

fixed:
private static final String _POPUP_CONTAINER_DIV_STYLES = "position:absolute; top:0px; left:0px; visibility:hidden; display: none;";

tested on IE7, FF3.0.0.8, Google Chrome

> Table grids visible on page at uneven location when tr:table used as child in PANELPOPUP component.
> ---------------------------------------------------------------------------------------------------
>
>                 Key: TRINIDAD-1158
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-1158
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>          Components: Components
>    Affects Versions: 1.0.4-core, 1.0.7-core
>         Environment: IE6,IE7
>            Reporter: Ramesh Bandaru
>            Priority: Minor
>
> When tr:table is used as child for tr:panelPopup component then the table grids are visible on the page at top-left corner.
> after clicking on panelPopup link grids disappers and reappers when any  other action performed.

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