[JBoss JIRA] Commented: (RF-711) Special column (with check box) to allow multiple row selection (in dataTable)
by asookazian (JIRA)
[ http://jira.jboss.com/jira/browse/RF-711?page=comments#action_12413114 ]
asookazian commented on RF-711:
-------------------------------
I need this functionality as well. I am currently using the following facelet code and am getting:
TechDeployToUser.xhtml @194,122 value="#{techDeployToUser.setSelectedAssignCheckbox(hardwareTableList.getRowIndex())}": Illegal Syntax for Set Operation
<rich:dataTable id="userQueueTable" value="#{userLocEquipList}" var="hardware">
<rich:column>
<f:facet name="header"><h:outputText value="Barcode"/></f:facet>
<h:outputText value="#{hardware.coxBarcode}"/>
</rich:column>
<rich:column>
<f:facet name="header"><h:outputText value="Purchaser"/></f:facet>
<h:outputText value="#{hardware.trOwnerType.ownerTypeDesc}"/>
</rich:column>
<rich:column>
<f:facet name="header"><h:outputText value="Manufacturer"/></f:facet>
<h:outputText value="#{hardware.tbHardwareModel.tbHardwareVendor.hardwareVendorDesc}"/>
</rich:column>
<rich:column>
<f:facet name="header"><h:outputText value="Type"/></f:facet>
<h:outputText value="#{hardware.tbHardwareModel.trHardwareType.hardwareTypeDesc}"/>
</rich:column>
<rich:column>
<f:facet name="header"><h:outputText value="Model"/></f:facet>
<h:outputText value="#{hardware.tbHardwareModel.hardwareModel}"/>
</rich:column>
<rich:column>
<f:facet name="header"><h:outputText value="Remove from User"/></f:facet>
<h:selectBooleanCheckbox value="#{techDeployToUser.setSelectedRemoveCheckbox(userLocEquipList.getRowIndex())}"/>
</rich:column>
</rich:dataTable>
<h:form>
<h:commandButton id="submit" value="Submit Technician Changes" action="#{techDeployToUser.submit}" onclick="return confirmMode('Submit','');"/>
<h:commandButton id="cancel" value="Cancel Technician Changes" action="#{techDeployToUser.cancel}" disabled="false" onclick="return confirmMode('Cancel','');"/>
</h:form>
> Special column (with check box) to allow multiple row selection (in dataTable)
> ------------------------------------------------------------------------------
>
> Key: RF-711
> URL: http://jira.jboss.com/jira/browse/RF-711
> Project: RichFaces
> Issue Type: Feature Request
> Affects Versions: 3.1.0, 3.2.0, Wishes
> Reporter: Mikhail Grushinskiy
> Assigned To: Nick Belaevski
> Fix For: Wishes
>
>
> Special column (with check box) to allow multiple row selection.
> Check box in header selects/deselect all rows.
> Check boxes on rows select those rows.
--
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-3433) Ordering list: action method is never called.
by Sergey Halipov (JIRA)
Ordering list: action method is never called.
---------------------------------------------
Key: RF-3433
URL: http://jira.jboss.com/jira/browse/RF-3433
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: facelets
Reporter: Sergey Halipov
XHTML:
<form>
<rich:orderingList value="#{library.libraryAsList}" var="lib" listHeight="300" listWidth="350">
<rich:column width="180">
<a4j:commandButton value="#{lib.title}" action="#{lib.action}" />
</rich:column>
<rich:column>
<h:commandButton value="#{lib.title}" action="#{lib.action}" />
</rich:column>
</rich:orderingList>
</form>
Java bean:
public String action () {
System.out.println("!!! action == ");
return null;
}
Action method is never called. It seems to work with JSP.
--
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