| Author |
Problem With the "action" Attribute
|
zohreh talebi
Ranch Hand
Joined: Sep 01, 2006
Posts: 41
|
|
Hi, I want to edit some of my table data. I have put <h:commandButton> around my <h utputText ...> so that if I click on the button, the changes would be saved to database. The action of the button is : "tableData.saveEditedRow". The problem is that when I click on the button nothing happens. These are some part of my code (please kindly help me) : edit.jsp : TableData.java : My bean class (Name.java) :
|
 |
zohreh talebi
Ranch Hand
Joined: Sep 01, 2006
Posts: 41
|
|
Please somebody guide me...
|
 |
Tak Ng
Greenhorn
Joined: Jun 05, 2007
Posts: 19
|
|
On the line <h:commandButton action="tableData.saveEditedRow" value="save"> you must surround "tableData.saveEditedRow" with #{} so it becomes <h:commandButton action="#{tableData.saveEditedRow}" value="save">
|
 |
 |
|
|
subject: Problem With the "action" Attribute
|
|
|