[JBoss JIRA] Created: (RF-9798) CDK: template attributes are ignored
by Nick Belaevski (JIRA)
CDK: template attributes are ignored
------------------------------------
Key: RF-9798
URL: https://jira.jboss.org/browse/RF-9798
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: CDK
Affects Versions: 4.0.0.Milestone5
Reporter: Nick Belaevski
Assignee: Alexander Smirnov
For the following declaration:
<cc:interface>
<cdk:class>org.richfaces.renderkit.html.TreeNodeRenderer
</cdk:class>
<cdk:superclass>org.richfaces.renderkit.TreeNodeRendererBase</cdk:superclass>
<cdk:component-family>org.richfaces.TreeNode
</cdk:component-family>
<cdk:renderer-type>org.richfaces.TreeNodeRenderer
</cdk:renderer-type>
<cc:attribute name="iconLeaf" type="java.lang.String" />
<cc:attribute name="iconExpanded" type="java.lang.String" />
<cc:attribute name="iconCollapsed" type="java.lang.String" />
</cc:interface>
Attributes are not added to the generated UI* class.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (RF-9138) Core demo: multiple bugs when running with Myfaces
by Pavol Pitonak (JIRA)
Core demo: multiple bugs when running with Myfaces
--------------------------------------------------
Key: RF-9138
URL: https://jira.jboss.org/browse/RF-9138
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Milestone2
Environment: JBoss 6 M4, Tomcat 6.0.28, Myfaces 2.0.1, all browsers
Reporter: Pavol Pitonak
* add Myfaces to JBoss 6 (see http://community.jboss.org/wiki/JSFonJBossAS6)
* build core-demo (http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20100824-M2/examples/...) with "mvn clean package -P jee6"
* add following jboss-scanning.xml to war (into WEB-INF):
<scanning xmlns="urn:jboss:scanning:1.0">
<path name="WEB-INF/classes"/>
<path name="WEB-INF/lib/guava-r05.jar">
<exclude name="com.google.common.collect" />
</path>
</scanning>
* deploy to JBoss 6 M4
OR
* build core-demo with "mvn clean package -Djsf_profile=myfaces"
* deploy to Tomcat
There are several bugs:
1. http://localhost:8080/core-demo/actionListener.jsf
after clicking on whichever button, nothing happens (error message should be shown on page)
2. http://localhost:8080/core-demo/actionListener.jsf
clicking on a button is causing "Parameters: Invalid chunk ignored." warning in server log
3. http://localhost:8080/core-demo/ajax.jsf
a4j:ajax wrapping several elements doesn't work (seems to be know issue)
4. http://localhost:8080/core-demo/button.jsf
http://localhost:8080/core-demo/link.jsf
type something into input and press the first button, result: "Hello null!"
5. http://localhost:8080/core-demo/log.jsf
javax.faces.convert.ConverterException - j_id250207658_ee9ddc2:j_id250207658_ee9dd03: 'popup' must be convertible to an enum.
6. http://localhost:8080/core-demo/push.jsf
java.lang.NullPointerException - java.lang.NullPointerException
7. http://localhost:8080/core-demo/function.jsf
click "Call events bound function", result: only one alert is shown instead of 3
8. http://localhost:8080/core-demo/status.jsf
click first "Ajax error" link, wait until the request finishes, now press whichever link, result: nothing happens, no request is fired
9. http://localhost:8080/core-demo/region.jsf
set "@region" for all, generate values, click whichever button, result: output is not rerendered, only "last executed link value"
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (RF-9847) @JsfBehaviorRenderer annotation ignored
by Anton Belevich (JIRA)
@JsfBehaviorRenderer annotation ignored
----------------------------------------
Key: RF-9847
URL: https://jira.jboss.org/browse/RF-9847
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Anton Belevich
Assignee: Alexander Smirnov
There is no
<render-kit>
<client-behavior-renderer>
<client-behavior-renderer-type></client-behavior-renderer-type>
<client-behavior-renderer-class></client-behavior-renderer-class>
</client-behavior-renderer>
</render-kit>
section in the generated faces-config.xml file
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (RF-8907) Tag handler generation fails if @Attribute has signature property set
by Bernard Labno (JIRA)
Tag handler generation fails if @Attribute has signature property set
---------------------------------------------------------------------
Key: RF-8907
URL: https://jira.jboss.org/browse/RF-8907
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: CDK
Affects Versions: 4.0.0.Alpha2
Reporter: Bernard Labno
Following does not fail if signature property is omitted, but it is unacceptable.
@JsfComponent(tag = @Tag(name = "schedule",
handler = "org.richfaces.view.facelets.html.ScheduleHandler",
generate = true,
type = TagType.Facelets))
public abstract class AbstractSchedule extends UIComponentBase
implements ScheduleCommonViewAttributes, ScheduleListenerEventsProducer, AjaxComponent {
@Attribute(signature = @Signature(parameters = ScheduleItemMoveEvent.class, returnType = Boolean.class))
public abstract MethodExpression getItemMoveListener();
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (RF-8898) CDK could generate object names that conflict with Java keywords.
by Alexander Smirnov (JIRA)
CDK could generate object names that conflict with Java keywords.
-----------------------------------------------------------------
Key: RF-8898
URL: https://jira.jboss.org/browse/RF-8898
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: CDK
Reporter: Alexander Smirnov
Assignee: Alexander Smirnov
Fix For: 4.0.0.Milestone1
Attachments: generator.patch.zip
CDK creates enum for attributes referenced in the property getters/setters. If attribute name coincides with Java keyword, generated Java class couldn't be compiled.
Mojarra uses a little bit more complicated enum class for these cases, so CDK has to do the same:
enum PropertyKeys {
forValue("for"),
showDetail,
showSummary,
redisplay;
String toString;
PropertyKeys(String toString) {
this.toString = toString;
}
PropertyKeys() {
}
public String toString() {
return ((this.toString != null) ? this.toString : super.toString());
}
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (RF-8922) RF4.0: DataScroller - class names for buttons
by Lukas Fryc (JIRA)
RF4.0: DataScroller - class names for buttons
----------------------------------------------
Key: RF-8922
URL: https://jira.jboss.org/browse/RF-8922
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component, component-tables
Affects Versions: 4.0.0.Alpha2
Reporter: Lukas Fryc
It will be nice to have also class names for exact selection of such buttons, instead you have to use CSS3 selectors (such as :nth-child, :first, :last) to select such elements, but this isn't straightforward if you disable some buttons.
I suggest use new class names, such as rf-ds-f, rf-ds-fr, rf-ds-ff, rf-ds-l.
Read more at: http://community.jboss.org/thread/153989
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months