| Author |
Changing application ststus in a datatable
|
Rohit Kumar
Ranch Hand
Joined: Jul 19, 2007
Posts: 35
|
|
I have a datatable with application name, application status and check box to change the application status. My question is , I have checkbox for every record in data table to change the application status. User can select any check box and needs to click CHANGE STATUS button to update the application status. How can I do this. APPLICATION NAME APPLCIATION STATUS CHANGE STATUS ABC CURRENT check box 123 CURRENT check box <h:column> <f:facet name="header"> <h utputText value="Appliation Name"/> </f:facet> <h utputText styleClass="user" value="#{cipDetailed.applicationName}"> </h utputText> </h:column> <h:column> <f:facet name="header"> <h utputText value="Application Status"/> </f:facet> <h utputText styleClass="user" value="#{cipDetailed.cipStatus.statusType}"> </h utputText> </h:column> <h:column> <f:facet name="header"> <h utputText value="Change Status"/> </f:facet> <h:selectBooleanCheckbox id="changeCIPStatus" immediate="true" value="#{cipDetailed.cipStatus.statusType}" > </h:selectBooleanCheckbox> </h:column> In the above table�="#{cipDetailed.cipStatus.statusType}"> cipDetaield is my table name, cipStatus is lookup table to identify the status. Any suggestions
|
 |
 |
|
|
subject: Changing application ststus in a datatable
|
|
|