[JBoss JIRA] (RF-12103) onmouse events dont working on rich:notifyMessage
by Antonio Rodriguez (JIRA)
Antonio Rodriguez created RF-12103:
--------------------------------------
Summary: onmouse events dont working on rich:notifyMessage
Key: RF-12103
URL: https://issues.jboss.org/browse/RF-12103
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.2.0.Final
Reporter: Antonio Rodriguez
Hi, im using rich:notifyStack and rich:notifyMessage to show erros of required=true h:inputText.
All goes OK but i need that onclick event over the notifiyMessage, the cursor go focused on the h:inputText associated with the notifyMessage. I noticed that the events (onmouseover, onclick, onmouseout...) doesnt work on notifyMessages.
However, this events goes OK on rich:message.
Does anybody knows why the mouse events dont work with notifyMessages???
Thanks
--
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
13 years, 8 months
[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
13 years, 8 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
13 years, 8 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
13 years, 8 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
13 years, 8 months