[JBoss JIRA] Updated: (RF-590) Support a rowDetail facet in DataTable
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-590?page=all ]
Nick Belaevski updated RF-590:
------------------------------
Fix Version/s: 3.2.2
(was: 3.2.1)
> Support a rowDetail facet in DataTable
> --------------------------------------
>
> Key: RF-590
> URL: http://jira.jboss.com/jira/browse/RF-590
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.0.1
> Reporter: Diego Ballve
> Assigned To: Maksim Kaszynski
> Fix For: 3.2.2
>
>
> Frequently we have the need to display more details of a table row immediately after that row. If I'm not mistaken MyFaces Tomahawk or Trinidad has something like that.
> Currently (RichFaces 3.0.1) you can do it by using a subTable w/ 1 column that spans all parent table columns.. but that is hacky and you have to play around with the var/value attributes.
> With the facet, the same var defined for the row would be available for the details, and it could even support input components - which work on dataTable but fail in subTable, in in 3.0.1.
--
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
16 years, 7 months
[JBoss JIRA] Reopened: (RF-765) AJAX Tree attributes
by Ilya Shaikovsky (JIRA)
[ http://jira.jboss.com/jira/browse/RF-765?page=all ]
Ilya Shaikovsky reopened RF-765:
--------------------------------
Assignee: Nick Belaevski (was: Tsikhon Kuprevich)
changed index2 page to
<rich:tree switchType="client" style="width:300px"
value="#{pathwayBean.pathwayTree}" var="item" treeNodeVar="treeNode"
nodeFace="#{item.type}" oncomplete="alert('complete 1')" ajaxSubmitSelection="true">
<rich:treeNode type="library" oncomplete="alert('complete 2')">
<h:outputText value="#{item.type}"/>
<h:outputText value="_" />
<h:outputText value="#{treeNode.data.type}" />
</rich:treeNode>
<rich:treeNode type="pathway" oncomplete="alert('complete 3')">
<h:outputText value="#{item.name}"/>
<h:outputText value="-" />
<h:outputText value="#{treeNode.data.name}" />
</rich:treeNode>
<rich:treeNode type="organism" oncomplete="alert('complete 4')">
<h:outputText value="#{item.name}"/>
<h:outputText value="+" />
<h:outputText value="#{treeNode.data.name}" />
</rich:treeNode>
</rich:tree>
after any node selected - oncomplete from tree fired
> AJAX Tree attributes
> --------------------
>
> Key: RF-765
> URL: http://jira.jboss.com/jira/browse/RF-765
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.1.0
> Reporter: Nick Belaevski
> Assigned To: Nick Belaevski
> Priority: Minor
> Fix For: 3.2.0
>
>
> Tree could ignore common AJAX attributes set on tree, but not on treeNode. Bridging them 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
16 years, 7 months
[JBoss JIRA] Created: (RF-2941) reRender attribute does not work in latest release 3.2.0.GA
by Hongqi Jia (JIRA)
reRender attribute does not work in latest release 3.2.0.GA
-----------------------------------------------------------
Key: RF-2941
URL: http://jira.jboss.com/jira/browse/RF-2941
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: Fedora 8 Linux, JDK6, JBoss4.2.2.GA, JBoss-seam-2.0.1.GA
Reporter: Hongqi Jia
Priority: Critical
After upgraded richfaces libraries to the latest release 3.2.0.GA from 3.1.4.GA, all the reRender settings in my project do not re-render the specified components any more. After I roll back richfaces libraries to old 3.1.4.GA release, the same code works again. Here is the sample code in my project:
<s:decorate id="provinceDecoration" template="../layout/edit.xhtml">
<ui:define name="label">Province</ui:define>
<h:selectOneMenu id="proviences" value="#{user.provience}" required="true">
<a:support ajaxSingle="true" immediate="true" reRender="city" event="onchange" />
<a:support event="onblur" reRender="provinceDecoration" bypassUpdates="true" ajaxSingle="true" />
<s:selectItems value="#{apts:getProvinces()}" var="prov" label="${prov}" noSelectionLabel="Plese Select"
hideNoSelectionLabel="true" />
</h:selectOneMenu>
</s:decorate>
<s:decorate id="cityDecoration" template="../layout/edit.xhtml">
<ui:define name="label">City</ui:define>
<h:selectOneMenu id="city" value="#{user.city}" required="true">
<a:support event="onblur" reRender="cityDecoration" bypassUpdates="true" ajaxSingle="true" />
<s:selectItems value="#{apts:getCitiesOfProvince(user.provience)}" var="city" label="${city}"
noSelectionLabel="Please Select" hideNoSelectionLabel="true" />
</h:selectOneMenu>
</s:decorate>
With 3.2.0.GA richfaces library, the "City" drop-down list will be empty after "Province" field is selected (reRender="city" attribute failed). But his same code works perfectly with 3.1.4.GA richfaces release.
--
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
16 years, 7 months