Sergey Zubarev created RF-13086:
-----------------------------------

             Summary: Popup panel: button's label is invisible in IE8
                 Key: RF-13086
                 URL: https://issues.jboss.org/browse/RF-13086
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: component-panels-layout-themes
    Affects Versions: 4.3.2, 4.3.1
         Environment: jboss 7.1.1 gatein 3.5 portletbridge 3.2 jsf 2.1.7 
(jboss7.1.1 embedded) richfaces 4.3.1(2)
            Reporter: Sergey Zubarev


{noformat}
<!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>
<ui:composition xmlns="http://www.w3.org/1999/xhtml";
    xmlns:ui="http://java.sun.com/jsf/facelets";
    xmlns:h="http://java.sun.com/jsf/html";
    xmlns:f="http://java.sun.com/jsf/core";
    xmlns:a4j="http://richfaces.org/a4j";
    xmlns:rich="http://richfaces.org/rich";>

<h:form id="planningCPPRTableSettingForm">
    <rich:popupPanel modal="true" id="planningCPPRTableSettingsPanel" 
width="450" height="500"
        showWhenRendered="false" domElementAttachment="form">
        <f:facet name="header">
            <h:outputText value="#{msg.tableConfig_header}" />
        </f:facet>
        <f:facet name="controls">
            <h:graphicImage name="images/fil_close.png"
                style="cursor:pointer"
                
onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide()" />
        </f:facet>
                <a4j:commandButton id="apply_btn" value="apply"/>

                <a4j:commandButton id="reset_btn" value="reset"/>

                <input type="button" value="cancel"
                    
onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide();" />
    </rich:popupPanel>
</h:form>
</ui:composition>
{noformat}

IE 8 not rendered labels for buttons.

In HTML all ok - all buttons have labels (value tag). In IE 7,9,10 all ok. If I 
removed header facet from popupPanel or add autosized="true" attribute for 
popupPanel - button text is displayed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
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