[JBoss JIRA] Created: (RF-8547) EL expression in expanded attribute of panelMenuGroup
by Jethro Borsje (JIRA)
EL expression in expanded attribute of panelMenuGroup
-----------------------------------------------------
Key: RF-8547
URL: https://jira.jboss.org/jira/browse/RF-8547
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-menu
Affects Versions: 3.3.3.CR1, 3.3.2.SR1, 3.3.2.GA
Reporter: Jethro Borsje
I am using an EL expression in the "expand" attribute of a panelMenuGroup which results in the following error:
25-mrt-2010 11:51:16 javax.faces.component.UIInput updateModel
SEVERE: /test.xhtml @82,68 expanded="#{true}": Illegal Syntax for Set Operation
This is my code:
<rich:panel header="#{navigation.selectedHoofdTab.naam}" headerClass="hoofdTab" bodyClass="hoofdTabContent" style="width: 250px; height: 500px;" id="subtabs">
<!-- Subtabs -->
<rich:panelMenu mode="ajax" iconExpandedGroup="disc" iconCollapsedGroup="disc" iconExpandedTopGroup="chevronUp" iconGroupTopPosition="right" iconCollapsedTopGroup="chevronDown"
topGroupClass="subTab" itemClass="taak" styleClass="subTabContainer">
<c:forEach items="#{navigation.selectedHoofdTab.subTabs}" var="subTab">
<rich:panelMenuGroup label="#{subTab.naam}" expanded="#{true}">
<!-- Taken -->
<c:forEach items="#{subTab.taken}" var="taak">
<rich:panelMenuItem label="#{taak.naam}">
<f:param name="current" value="#{taak.naam}" />
</rich:panelMenuItem>
</c:forEach>
<!-- Einde taken -->
</rich:panelMenuGroup>
</c:forEach>
</rich:panelMenu>
<!-- Einde subtabs -->
</rich:panel>
The RichFaces documentation says the following about the "expand" attribute: "If true group will be displayed expanded initially. Default value is "false"". This leads me to believe the attribute is NOT read / write, so why does RichFaces try to set the value?
A similar bug is marked as resolved and has been closed: https://jira.jboss.org/jira/browse/RF-2922, perhaps this is regression?
--
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
14 years, 8 months
[JBoss JIRA] Created: (RF-8541) Null Parent Node
by Fernando Ribeiro (JIRA)
Null Parent Node
----------------
Key: RF-8541
URL: https://jira.jboss.org/jira/browse/RF-8541
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 3.3.3.CR1
Reporter: Fernando Ribeiro
While using portlets with JBoss Portlet Bridge 2.0.0.CR1, I get an "script.parentNode is null or not an object" in IE8 (but not in Firefox 3.6) from ui.pack.js:
function checkReadyState() {
if (script.readyState=="complete") {
script.parentNode.removeChild(script);
callDomLoadFunctions()
}
}
I wasn't able to find the cause of the issue, but found a way to work around it:
function checkReadyState() {
if (script.parentNode && script.readyState=="complete") {
script.parentNode.removeChild(script);
callDomLoadFunctions()
}
}
Can you please investigate the issue and/or consider adding the workaround to the next 3.x release?
--
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
14 years, 8 months
[JBoss JIRA] Created: (RF-8494) Describe limitations of table variables usage with sorting/filtering
by Nick Belaevski (JIRA)
Describe limitations of table variables usage with sorting/filtering
----------------------------------------------------------------------
Key: RF-8494
URL: https://jira.jboss.org/jira/browse/RF-8494
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 3.3.3.Final
Reporter: Nick Belaevski
Assignee: Sean Rogers
The following limitation applies to built-in filtering/sorting for rich:dataTable component: expressions can refer only to the variable declared as "var" attribute. Another variables, e.g. "rowKeyVar" are not supported.
Examples.
Supported case:
<rich:dataTable var="item">
<rich:column sortBy="#{item}">
...
</rich:column>
</rich:dataTable>
Not supported case:
<rich:dataTable rowKeyVar="rkv">
<rich:column sortBy="#{rkv}">
...
</rich:column>
</rich:dataTable>
--
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
14 years, 8 months