Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.2.7-core
-
None
-
Tomcat 6.0.14, Sun JSF RI 1.2, Windows XP SP2, IE6, Facelets 1.1.14
Description
A combobox (maybe with too long content) is not shown in a lightweight dialog in IE. But if the combobox is a required field and the form is submitted, then the combobox is shown correctly (together with the required error message).
Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core"
xmlns:tr="http://myfaces.apache.org/trinidad" xmlns:trh="http://myfaces.apache.org/trinidad/html"
xmlns:h="http://java.sun.com/jsf/html"
version="1.2">
<trh:head>
<title>Arzt auswählen</title>
</trh:head>
<trh:body>
<tr:form>
<tr:panelFormLayout>
<tr:selectOneChoice label="Arzt:" value="#
" required="true">
<f:selectItems value="#
" />
</tr:selectOneChoice>
</tr:panelFormLayout>
<tr:separator />
<tr:panelButtonBar halign="center">
<tr:commandButton id="save" action="#
" text="Übernehmen" />
<tr:commandButton id="cancel" action="#
" text="Abbrechen" immediate="true" />
</tr:panelButtonBar>
</tr:form>
</trh:body>
</html>
Attachments
Attachments
Issue Links
- is related to
-
TRINIDAD-941 chooseDate Calendar heading does not display the month label initially when ENABLE_LIGHTWEIGHT_DIALOGS is set to true
- Closed