[JBoss JIRA] Created: (RF-5639) combobox: unicode display incorrect during first navigation to page with component(myfaces only)
by Mikhail Vitenkov (JIRA)
combobox: unicode display incorrect during first navigation to page with component(myfaces only)
------------------------------------------------------------------------------------------------
Key: RF-5639
URL: https://jira.jboss.org/jira/browse/RF-5639
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.CR3) myfaces 1.2.5
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Jsp code:
<?xml version="1.0" encoding="UTF-8"?>
...
<h:form id="formID">
<h:commandButton value="submit" />
<rich:comboBox>
<f:selectItems value="#{custom.items}"/>
</rich:comboBox>
</h:form>
#2. Java bean code:
items = new SelectItem[3];
for(int i=0;i<3;i++){
items[i] = new SelectItem(i+"\u00a0"+i,i+"\u00a0"+i);
}
#3. Navigate to page and click component button.
#4. Verify comboBox items.
#5. Press submit and repeat Step #4.
Actual behavior:
When page display at 1st time, following values display in box: 1\u00a01,2\u00a02.. But after submit values look such way: 1 1, 2 2...
--
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
15 years, 9 months
[JBoss JIRA] Created: (RF-4551) Neither styles nor scripts are loaded on error page.
by Sergey Halipov (JIRA)
Neither styles nor scripts are loaded on error page.
----------------------------------------------------
Key: RF-4551
URL: https://jira.jboss.org/jira/browse/RF-4551
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: Tomcat 6.0.18
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
Java HotSpot(TM) Server VM (build 10.0-b23, mixed mode)
richfaces 3.2.2.GA
facelets 1.1.14
jsf 1.2_09fix
Reporter: Sergey Halipov
Priority: Blocker
web.xml
<error-page>
<error-code>404</error-code>
<location>/error404.jsf</location>
</error-page>
error404.xhtml
<h:form>
<rich:dropDownMenu value="Test"
id="menu_online_booking"
rendered="true">
<rich:menuItem id="menu_online_booking_createNewOrder"
value="test item"
action="#{MenuHandler.actionItemSelect}" >
<a4j:actionparam assignTo="#{MenuHandler.action}"
value="menu_online_booking_createNewOrder" />
</rich:menuItem>
</rich:dropDownMenu>
</h:form>
Try to open some non-existent page. Application will redirect to error404 page but rich faces styles and scripts will not be added to this page. Error appears with richfaces 3.2.2 only. 3.2.1 works fine.
--
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
15 years, 9 months