[JBoss JIRA] Created: (RF-2086) Errors in components section
by Svetlana mukhina (JIRA)
Errors in components section
----------------------------
Key: RF-2086
URL: http://jira.jboss.com/jira/browse/RF-2086
Project: RichFaces
Issue Type: Bug
Components: doc
Affects Versions: 3.1.0
Reporter: Svetlana mukhina
Assigned To: Vladimir Sukhov
Fix For: 3.1.4, 3.2.0
1. < a4j:ajaxListener >
Key attributes and ways of usage
The <a4j:ajaxListener> component is the same one as "actionListener" or "ValueChangeListener", but for an Ajax container.
"actionListener" -> <f: actionListener >
"ValueChangeListener" -> <f: f:valueChangeListener>
2. < a4j:ajaxListener >
Key attributes and ways of usage
Attribute "type" described in the following chapter.
following chapter - the link doesn't work; better to make an attribute description here, it's the only one for the component . highlight "type".
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years
[JBoss JIRA] Created: (RF-1326) 3.1.3-SNAPSHOT: ToolTip crashes with Webbrowser of JBoss Tools
by Juergen Zimmermann (JIRA)
3.1.3-SNAPSHOT: ToolTip crashes with Webbrowser of JBoss Tools
--------------------------------------------------------------
Key: RF-1326
URL: http://jira.jboss.com/jira/browse/RF-1326
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.2
Environment: Eclipse 3.3.1.1, WTP 2.0.1, JBoss Tools 20071109, RichFaces 3.1.3-20071109, Facelets 1.1.14, JBoss 4.2.2, JDK 1.6.0_03
Reporter: Juergen Zimmermann
The following bug didn't happen with RichFaces 3.1.2
I get this Javascript error window (translated from German):
"There is a runtime error.
Do you want to start the debug mode?
Line: 29
Error: 'ToolTip' is undefined"
I'll attach the generated XHTML code.
BTW, there is no problem with IE 7 and also no problem with Firefox 2.0.0.8. However, it's a pitty if the web browser of JBossTools cannot be used any more when using the new version of RichFaces.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years
[JBoss JIRA] Created: (RF-1885) immediate="true" does not work on a4j:support tag
by egor kolesnikov (JIRA)
immediate="true" does not work on a4j:support tag
-------------------------------------------------
Key: RF-1885
URL: http://jira.jboss.com/jira/browse/RF-1885
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.2
Environment: mac osx 10.5.1, safari 3.0.4
Reporter: egor kolesnikov
<rich:panel>
<h:inputText id="keywordInput"
value="#{stopWordsManager.keyword}"
required="true"
requiredMessage="Please enter the Keyword"/>
<h:commandButton actionListener="#{stopWordsManager.resetSearch}"
value="Reset"
immediate="true"/>
<p><rich:message for="keywordInput"/></p>
</rich:panel>
<rich:dataTable id="stopWordsTable" rows="#{stopWordsList.pageSize}"
value="#{stopWordsList.stopWords}" var="stopWord"
rendered="#{not stopWordsList.isEmpty()}">
<h:column>
<h:selectBooleanCheckbox value="#{stopWord.selected}" immediate="true">
<a4j:support event="onchange" immediate="true"/>
</h:selectBooleanCheckbox>
</h:column>
</rich:dataTable>
</h:form>
</rich:panel>
It is expected that "<a4j:support event="onchange" immediate="true"/>" there will be no validation and a4j will set the "selected" attribute properly, but it looks like this does not happen - validation happens and "setSelected(boolean)" method is not being called.
However, using "<a4j:support event="onchange" ajaxSingle="true"/>" solves the problem, but it looks like a "hack". It is said in the RF spec:
Note, that ajaxSingle="true" reduces the upcoming traffic, but does not
prevent decoding other input components on the server side. Some JSF components,
such as h:selectOneMenu do recognize the missing data in the request map value as
a null value and try to pass the validation process with a failed result. Thus,
use a4j:region to limit a part of the component tree that will be processed
on the server side when it is required.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years