[JBoss JIRA] Created: (RF-10645) Metamer - Inplace Select sample - NullPointerException in initialization
by Lukas Fryc (JIRA)
Metamer - Inplace Select sample - NullPointerException in initialization
------------------------------------------------------------------------
Key: RF-10645
URL: https://issues.jboss.org/browse/RF-10645
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.CR1
Environment: RichFaces 4.0.0.20110227-CR1 r.21967
Metamer 4.0.0.20110228-CR1 r.21993
Apache MyFaces JSF-2.0 Core Impl 2.0.4
JBoss AS 6.0.0.Final (default configuration)
OpenJDK Runtime Environment 1.6.0_20-b20 @Linux
Chrome 9.0.597.98 @ Linux x86_64
Reporter: Lukas Fryc
This doesn't work specifically on JBoss AS with bundled MyFaces 2.0.4 and context-param WAR_BUNDLES_JSF_IMPL.
It seems container don't inject
private Attributes attributes;
@ManagedProperty(value = "#{model.capitals}")
private List<Capital> capitals;
javax.faces.FacesException: java.lang.reflect.InvocationTargetException
at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(ExceptionHandlerImpl.java:241)
Caused by: java.lang.NullPointerException
at org.richfaces.tests.metamer.bean.RichSelectBean.init(RichSelectBean.java:67)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-9932) rich:(extended)DataTable - doesn't store the state of sorting/filtering after render=@all
by Lukas Fryc (JIRA)
rich:(extended)DataTable - doesn't store the state of sorting/filtering after render=@all
-----------------------------------------------------------------------------------------
Key: RF-9932
URL: https://jira.jboss.org/browse/RF-9932
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Milestone4
Environment: RichFaces 4.0.0-SNAPSHOT r.20396
Metamer 4.0.0-SNAPSHOT r.20398
Mojarra 2.0.3-FCS
Apache Tomcat 6.0.29
OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux
Chrome 7.0.517.44 @ Linux x86_64
Reporter: Lukas Fryc
Steps to reproduce:
FIRST SCENARIO (Sorting):
1. open http://localhost:8080/metamer/faces/components/richDataTable/sorting-usin...
2. sort table by number of kids using link in column header
(you should see now only "0" in number of kids column)
3. go to last page (20)
(you should see now only "4" in number of kids column)
4. click Rerender All button in the header of page
(the output is unchaned)
5. go back to first page
FAIL: column # of kids is unsorted again
SECOND SCENARIO (Filtering):
1. open http://localhost:8080/metamer/faces/components/richDataTable/filtering.xhtml
2. filter table by increasing Number of Kids spinner in column header to value=1
(you should no "0" values in that column)
3. goto last page
(you should no "0" values in that column)
4. click Rerender All button in the header of page
(the output is unchaned)
5. go back to first page
FAIL: there are "0" values in Number of Kids column and also spinner's value changed back to 0
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-10465) Tables: attribute value of text input ignored
by Pavol Pitonak (JIRA)
Tables: attribute value of text input ignored
---------------------------------------------
Key: RF-10465
URL: https://issues.jboss.org/browse/RF-10465
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Milestone6
Environment: RichFaces 4.0.0-SNAPSHOT r.21514
Metamer 4.0.0-SNAPSHOT r.21527
Mojarra 2.1.0-FCS
GlassFish Server Open Source Edition 3.1-SNAPSHOT
OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux
Chrome 9.0.597.84 @ Linux x86_64
Reporter: Pavol Pitonak
Attachments: input.png
Create the following page and open it (data model contains 4 strings... "row1", "row2", "row3", "row4"). 5 inputs are rendered on the page but only the one outside the table contains a value "abc".
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:rich="http://richfaces.org/rich">
<h:head/>
<h:body>
<h:form id="form">
<h:inputText id="inputOut" value="abc"/><br/><br/>
<rich:dataTable value="#{templateBean.dataTableModel}" var="item" id="table" rowKeyVar="row">
<rich:column>
<h:inputText id="inputIn" value="abc"/>
</rich:column>
</rich:dataTable>
</h:form>
</h:body>
</html>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-10755) managed-bean in richfaces-core-impl
by Martin Kočí (JIRA)
managed-bean in richfaces-core-impl
-----------------------------------
Key: RF-10755
URL: https://issues.jboss.org/browse/RF-10755
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: compatibility
Affects Versions: 4.0.0.CR1
Environment: Richfaces 4.0.0 branch
Reporter: Martin Kočí
richfaces-core-impl contains three definitions of managed-beans:
a4j
a4jSkin
richSkin
By mistake one of our coders created CDI bean named "richSkin" and that caused malfunction of richfaces skinning.
Suggestion: do not provide those beans but implement them as implicit object (similar like JSF implicit object "view" or "sessionScope")
There is SkinPropertiesELResolver already, all what needs to be done is define new implicit object "richSkin" and handle it there in similar way how JSF impl handle implicit objects.
a4jSkin managed-bean seems to be obsolete, about a4j(VerionBean) I'm not sure.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-10748) CLONE - Extended dataTable. Header scrolled badly on TAB button.
by Ilya Shaikovsky (JIRA)
CLONE - Extended dataTable. Header scrolled badly on TAB button.
----------------------------------------------------------------
Key: RF-10748
URL: https://issues.jboss.org/browse/RF-10748
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-ScrollableDataTable
Affects Versions: 3.2.0
Environment: FF 2.0.0.6
Reporter: Ilya Shaikovsky
Assignee: Konstantin Mishin
Fix For: 3.Future
Attachments: case - 1.png, case - 2.png
Two use-cases failed:
"case - 1.png"
frozenColCount=0
all the columns with inputs
last columns aren't in visible part
When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!)
"case - 2.png"
frozenColCount=2
all the columns with inputs
last columns aren't in visible part
I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months