[JBoss JIRA] Created: (RF-2811) a4j:repeat doesn't support java.util.Set
by Sergey Halipov (JIRA)
a4j:repeat doesn't support java.util.Set
----------------------------------------
Key: RF-2811
URL: http://jira.jboss.com/jira/browse/RF-2811
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: JDK 1.5
Reporter: Sergey Halipov
a4j:repeat interprets Sets as simple type not a collection. Example bellow doesn't work correctly. But it would work if we replaced HashSet with ArrayList.
JSP code:
<a4j:repeat value="#{bean.testLists}" var="list" id="repeat">
<h:outputText value="#{list}"></h:outputText><br />
</a4j:repeat>
Java bean:
public class Bean {
private Collection<String> testLists = new HashSet<String>();
public Bean() {
for (int i = 0; i < 30; i++) {
testLists.add(new Integer(i).toString());
}
}
public Collection<String> getTestLists() {
return testLists;
}
public void setTestLists(Collection<String> testLists) {
this.testLists = testLists;
}
}
--
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
17 years, 2 months
[JBoss JIRA] Created: (RF-4129) Expanding/collapsing a rich:tree nodes from model
by Francisco Jose Peredo Noguez (JIRA)
Expanding/collapsing a rich:tree nodes from model
-------------------------------------------------
Key: RF-4129
URL: https://jira.jboss.org/jira/browse/RF-4129
Project: RichFaces
Issue Type: Feature Request
Reporter: Francisco Jose Peredo Noguez
Lets say I bind my Rich Tree to a list of object using the recursiveTreeNodesAdaptor:
Code:
<rich:recursiveTreeNodesAdaptor roots="#{rootNodes}" var="node" nodes="#{node.childNodes}">
<rich:treeNode rendered="#{node.visible}">
#{node.name}
</rich:treeNode>
with this code:
rendered="#{node.visible}"
I can control if it is visible or not... I would like something similar to control if it is collapsed or not, something like:
Code:
collapsed="#{node.collapsed}"
It would look like this:
<rich:recursiveTreeNodesAdaptor roots="#{rootNodes}" var="node" nodes="#{node.childNodes}">
<rich:treeNode rendered="#{node.visible}" collapsed="#{node.collapsed}">
#{node.name}
</rich:treeNode>
It would be extra-nice if it could propagate back automatically (if a leaf node has collapsed = false, all its parent nodes would be expandend)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months
[JBoss JIRA] Created: (RF-5166) fileUpload: fileUploadListener isn't call under myfaces.
by Mikhail Vitenkov (JIRA)
fileUpload: fileUploadListener isn't call under myfaces.
--------------------------------------------------------
Key: RF-5166
URL: https://jira.jboss.org/jira/browse/RF-5166
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: myfaces 1.2.5, IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.BETA1)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Set org.apache.myfaces.CHECK_EXTENSIONS_FILTER context parameter to "false" in web.xml;
#2. Set fileUploadListener="#{fileUpload.fileUploadListener}", where listener defined following way:
public void fileUploadListener(UploadEvent event) throws Exception{
UploadItem upload = event.getUploadItem();
if (upload.isTempFile()) {
File file = upload.getFile();
System.out.println("FileUpload.fileUploadListener()");
} else {
ByteArrayOutputStream b = new ByteArrayOutputStream();
b.write(upload.getData());
}
System.out.println("FileUpload.fileUploadListener()");
}
#3. Navigate to page with component & try to upload any valid file(satisfied with maxFilesQuantity, size restriction and so on).
#4. Verify "FileUpload.fileUploadListener()" message in console.
Actual behavior:
fileUploadListener was not fired.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 2 months