[JBoss JIRA] Created: (RF-10865) rich:extendedDataTable when expanding frozen column too much there is no scroller to view other columns
by Juraj Huska (JIRA)
rich:extendedDataTable when expanding frozen column too much there is no scroller to view other columns
-------------------------------------------------------------------------------------------------------
Key: RF-10865
URL: https://issues.jboss.org/browse/RF-10865
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.0.0.Final
Environment: demo application - richface-showcase, component demo - extendedDataTable, samples - ExtendedData Table Basic Usage and ExtendedData Table Basic Usage
Reporter: Juraj Huska
When I expanded column which is frozen too much, I mean expand more than the width of table is, then there is no scroller to view other columns, and I can not revert it, to see them again. The only solution to view them again is to refresh the page.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 7 months
[JBoss JIRA] (RF-11994) Xcss2EcssConverter error handling f:importResource
by Dupont Dupont (JIRA)
Dupont Dupont created RF-11994:
----------------------------------
Summary: Xcss2EcssConverter error handling f:importResource
Key: RF-11994
URL: https://issues.jboss.org/browse/RF-11994
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.2.0.CR1
Reporter: Dupont Dupont
When using Xcss2EcssConverter to transform xcss to ecss, I've the following error :
Source xcss :
{code:xml}
<f:importResource src="META-INF/skins/charte/commun/css/sx_commun.xcss" />
{code}
Is transformed to :
{noformat}
@import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss']"}
{noformat}
It should be :
{noformat}
@import url("#{resource['META-INF/skins/charte/commun/css/sx_commun.ecss']}");
{noformat}
--
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, 7 months
[JBoss JIRA] (RF-11970) Ajax event craete exception on dorm submission when defined on dataTable inside that form
by shimon lifshitz (JIRA)
shimon lifshitz created RF-11970:
------------------------------------
Summary: Ajax event craete exception on dorm submission when defined on dataTable inside that form
Key: RF-11970
URL: https://issues.jboss.org/browse/RF-11970
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.1.0.Final
Environment: All
Reporter: shimon lifshitz
I defined ajax support event="rowclick" on rich:dataTable. This table is defined inside a form. When I tried to submit the form (h:command). I got an exception:
Caused by: java.lang.NullPointerException
at org.richfaces.renderkit.DataTableRenderer.doDecode(DataTableRenderer.java:111)
at org.richfaces.renderkit.RendererBase.decode(RendererBase.java:80)
at javax.faces.component.UIComponentBase.decode(UIComponentBase.java:787)
Problem can be easily fixed by addind check for null in relevent line:
if (!behaviorEvent.startsWith(ROW)) { --->
if (behaviorEvent == null ||!behaviorEvent.startsWith(ROW))
--
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, 7 months
[JBoss JIRA] (RF-12140) Upgrade com.google.guava:guava from 10.x to 11.x
by Marek Novotny (JIRA)
Marek Novotny created RF-12140:
----------------------------------
Summary: Upgrade com.google.guava:guava from 10.x to 11.x
Key: RF-12140
URL: https://issues.jboss.org/browse/RF-12140
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Affects Versions: 4.2.0.Final
Reporter: Marek Novotny
I had to upgrade guava to 11.x version and this breaks the CDK Generator tests in org.richfaces.cdk.templatecompiler.parser.el.test.ELParserTest
I have to change the usage of ImmutableSet.of to ImmutableSet.copyOf.
{noformat}
diff --git a/generator/src/test/java/org/richfaces/cdk/templatecompiler/parser/el/test/ELParserTest.java b/generator/src/test/java/org/richfaces/cdk/templatecompiler/parser/el/test/ELParserTest.java
index 472a34d..6039aff 100644
--- a/generator/src/test/java/org/richfaces/cdk/templatecompiler/parser/el/test/ELParserTest.java
+++ b/generator/src/test/java/org/richfaces/cdk/templatecompiler/parser/el/test/ELParserTest.java
@@ -109,7 +109,7 @@
}
for (HelperMethod helperMethod : parseExpression.getRequiredMethods()) {
assertTrue("Unexpected helper method " + helperMethod.getName(),
- Iterables.contains(ImmutableSet.of(requiredMethods), helperMethod));
+ Iterables.contains(ImmutableSet.copyOf(requiredMethods), helperMethod));
}
return parseExpression;
}
{noformat}
--
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, 7 months
[JBoss JIRA] (RF-12154) richValidator: @disabled=true throws exception
by Jiří Štefek (JIRA)
Jiří Štefek created RF-12154:
--------------------------------
Summary: richValidator: @disabled=true throws exception
Key: RF-12154
URL: https://issues.jboss.org/browse/RF-12154
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Environment: RichFaces 4.2.1.SNAPSHOT
Metamer 4.2.1.SNAPSHOT
Mojarra 2.1.7-jbossorg-1
JBoss AS 7.1.1.Final
OpenJDK Runtime Environment 1.6.0_24-b24 @ Linux
Firefox 11.0 @ Linux x86_64
Reporter: Jiří Štefek
When attribute @disabled is set to true, then an exception is thrown. After issue is solved write a test for it.
{noformat}
javax.servlet.ServletException
javax.faces.webapp.FacesServlet.service(FacesServlet.java:606)
org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93)
root cause
java.lang.NullPointerException
org.richfaces.renderkit.html.ClientValidatorRenderer.replaceTextToVariable(ClientValidatorRenderer.java:201)
org.richfaces.renderkit.html.ClientValidatorRenderer.createAjaxScript(ClientValidatorRenderer.java:191)
org.richfaces.renderkit.html.ClientValidatorRenderer.createValidatorScript(ClientValidatorRenderer.java:151)
org.richfaces.renderkit.html.ClientValidatorRenderer.buildAndStoreValidatorScript(ClientValidatorRenderer.java:125)
org.richfaces.renderkit.html.ClientValidatorRenderer.getScript(ClientValidatorRenderer.java:60)
javax.faces.component.behavior.ClientBehaviorBase.getScript(ClientBehaviorBase.java:103)
org.richfaces.component.behavior.ClientValidatorImpl.getScript(ClientValidatorImpl.java:92)
com.sun.faces.renderkit.RenderKitUtils.getSingleBehaviorHandler(RenderKitUtils.java:1607)
com.sun.faces.renderkit.RenderKitUtils.renderHandler(RenderKitUtils.java:1700)
com.sun.faces.renderkit.RenderKitUtils.renderOnchange(RenderKitUtils.java:388)
com.sun.faces.renderkit.html_basic.TextRenderer.getEndTextToRender(TextRenderer.java:134)
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:170)
javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875)
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:312)
com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185)
com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129)
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779)
javax.faces.render.Renderer.encodeChildren(Renderer.java:168)
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)
com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304)
com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105)
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:845)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121)
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93)
{noformat}
--
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, 7 months
[JBoss JIRA] (RF-11821) RF4 extendedDataTable rowClasses not working in lazyloading of rows as it was working in Richfaces3.3.3.Final
by Saroj Padhy (Created) (JIRA)
RF4 extendedDataTable rowClasses not working in lazyloading of rows as it was working in Richfaces3.3.3.Final
-------------------------------------------------------------------------------------------------------------
Key: RF-11821
URL: https://issues.jboss.org/browse/RF-11821
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.1.0.CR2
Environment: Windows XP 32 bit OS, Mozilla Firefox 8.0, Google Chrome 16.0.912.63, IE 7 and 8
Reporter: Saroj Padhy
Fix For: 4.1.0.Final
The attribute in extendedDataTable component, "rowClasses" not working as it used to work in Richfaces3.3.3.Final version.
Normally rowClasses usage is as below:
<rich:extendedDataTable id="auction" value="#{auctionDataModel}" var="item" clientRows="10" selectionMode="single" rowClasses="odd,even"> ..
..
And in CSS file we define,
tr.odd {
background-color: #F3F3F3;
}
tr.even {
background-color: #FFFFFF;
}
So the row colors differ as odd and even row background colors.
This is not working in Richfaces4 extendedDataTable component when rows are getting loaded on request (lazyloading). All rows shows odd background color.
There is a work around for this issue, which is only working in Mozilla browser.
Link:http://community.jboss.org/thread/168326?tstart=0
--
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, 7 months