RE: JSF EL & Method names

2005-03-10 Thread hermod . opstvedt
Hi it should be : usuarioBean.usuario.hasOfertas NO parentesis !! Hermod -Original Message- From: Enrique Medina [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 11:58 AM To: [EMAIL PROTECTED] Subject: JSF EL & Method names Hi, I have read your answer to my question in t

Re: JSF EL & Method names

2005-03-10 Thread Enrique Medina
Thanks, you were right! On Tue, 8 Mar 2005 12:49:22 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi > > your missing the essential part - get -- > > rename your method to getHasOffers() and it will work as a charm :) > > Hermod > > -Original Message- > From: E

Re: JSF EL & Method names

2005-03-08 Thread Heath Borders
Anywhere where a ValueBinding is required, you must have either a BeanInfo defined for the class (I don't know how to do this, I don't recommend it), or preface your methods with get/set appropriately. Anywhere where a MethodBinding is required, you need the whole method name. On Tue, 8 Mar 2005

Re: JSF EL & Method names

2005-03-08 Thread Michal Malecki
As far as I know JSF EL allows to use methods in only specific situations 1) actions - method has signature String doAction(){} 2)events - method has signature void handleEvent(ActionEvent event){} and in el: action="#{bean.doAction}" actionListener="#{bean.handleEvent}" for other situations you m

RE: JSF EL & Method names

2005-03-08 Thread hermod . opstvedt
Hi your missing the essential part - get -- rename your method to getHasOffers() and it will work as a charm :) Hermod -Original Message- From: Enrique Medina [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 12:36 PM To: myfaces-user@incubator.apache.org Subject: