[JBoss JIRA] (RF-12354) rich:dataScroller incompatible with rich:collapsibleSubTable filtering
by Karsten Wutzke (JIRA)
Karsten Wutzke created RF-12354:
-----------------------------------
Summary: rich:dataScroller incompatible with rich:collapsibleSubTable filtering
Key: RF-12354
URL: https://issues.jboss.org/browse/RF-12354
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.2.2.Final
Environment: JBoss AS 7.1.1.Final, Mojarra 2.1.7, Windows 7
Reporter: Karsten Wutzke
You can find a complete description including a test case (just two files) in the forum post under "Forum Reference".
In any case filtering over the complete sub table confuses the datascroller, which doesn't shift the unfiltered subtables to the front. This also has the effect of the datascroller showing the same number of pages at all times and the filter results shown are only for the *current* page, which misses the point of filtering entirely.
I'm aware that the way I displayed the sub tables (as groups in the first column with a calculated rowspan) is a little unusual, but since the filtering basically works, I don't see why this use case shouldn't be supported. There might be other scenarios when whole sub tables are the be excluded.
Workaround is to display a flat table, but this is less than desirable.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (RF-12312) rich:select - duplicate labels
by Denis Kniazhev (JIRA)
Denis Kniazhev created RF-12312:
-----------------------------------
Summary: rich:select - duplicate labels
Key: RF-12312
URL: https://issues.jboss.org/browse/RF-12312
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-selects
Affects Versions: 4.2.2.Final
Environment: Ubuntu 12.04, Mojarra 2.1.8 OR MyFaces 2.1.7
Reporter: Denis Kniazhev
Given rich:select:
<rich:select value="#{bean.testValue}">
<f:selectItem itemLabel="1" itemValue="1"/>
<f:selectItem itemLabel="1" itemValue="abcdef"/>
<f:selectItem itemLabel="2" itemValue="2"/>
<f:ajax event="selectitem" listener="#{bean.testListener}"/>
</rich:select>
and the bean:
@ManagedBean
@ViewScoped
public class Bean implements Serializable {
private String testValue;
public String getTestValue() {
return testValue;
}
public void setTestValue(String testValue) {
System.out.println("setter: " + testValue);
this.testValue = testValue;
}
public void testListener(AjaxBehaviorEvent e) {
System.out.println("listener: " + testValue);
}
}
Whatever item with label "1" is selected, the output is the same:
setter: abcdef
listener: abcdef
setter: abcdef
listener: abcdef
setter: abcdef
listener: abcdef
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months
[JBoss JIRA] (RF-12286) selectOneMenu with f:ajax cause a OutOfMemory under IE and slowdown under Firefox - listener
by Jean ANDRE (JIRA)
Jean ANDRE created RF-12286:
-------------------------------
Summary: selectOneMenu with f:ajax cause a OutOfMemory under IE and slowdown under Firefox - listener
Key: RF-12286
URL: https://issues.jboss.org/browse/RF-12286
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.2.2.Final
Environment: JSF Mojarra 2.1.7 - FireFox 12 or IE 8 - annotations-4.2.0.Final - aspectjrt-1.6.12 - cglib-nodep-2.2.2 - commons-collections-3.2.1 - commons-lang-2.4 - commons-logging-1.1.1 - commons-validator-1.4.0 - cssparser-0.9.6 - guava-11.0.1 - hibernate-validator-4.2.0.Final - junit-4.10 - log4j-1.2.16 - org.springframework.xxx-3.0.6.RELEASE - richfaces-xxxx-xxx-4.2.0.Final - sac-1.3 - slf4j-api-1.6.4 - slf4j-log4j12-1.6.4
Reporter: Jean ANDRE
Priority: Critical
We got an "Out of memory at line 249" under IE and a deep slowdown when we use f:ajax with <h:selectOneMenu> tag.
{code}
<h:selectOneMenu id="McMpList" value="#{currentUser.businessUnit}" immediate="true">
<f:ajax event="change" listener="#{menuController.doChangeDesktop}" render="@all" />
<f:selectItems value="#{menuController.businessUnits}" />
</h:selectOneMenu>
{code}
When we remove the f:ajax, the behavior is "normal".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 3 months