I want to have following function
In page a have command button
<h:commandButton id="btCreate" value="#{tagVar.CREATE}"
action="#{DebtorController.createDebtor}"/>
Can I pass some argument to this backing bean functon?Say the orignial is public string createDebtor() I want it to be public string createDebtor(String argu) Can it be? -- Anthony Hong

