RE: Disabled with value binding expression

2006-11-28 Thread Toppac
header in the JSP file? The page will silently skip the c:set tag in this case. Dennis Byrne -- View this message in context: http://www.nabble.com/Disabled-with-value-binding-expression-tf2546998.html# a7098480 Sent from the MyFaces - Users mailing list archive at Nabble.com

RE: Disabled with value binding expression

2006-11-28 Thread Nebinger, David
Have you tried using disabled=#{flowScope.delete.booleanValue}? -Original Message- From: Toppac [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 28, 2006 4:45 PM To: users@myfaces.apache.org Subject: RE: Disabled with value binding expression I wanted to add onto this to see

RE: Disabled with value binding expression

2006-11-28 Thread Toppac
: Disabled with value binding expression I wanted to add onto this to see if anyone could provide further insight. I am using a custom variable resolver to access some session scoped variables. I know the value is there because I can print it out. However, whenever I try to reference

RE: Disabled with value binding expression

2006-11-28 Thread Nebinger, David
@myfaces.apache.org Subject: RE: Disabled with value binding expression I wanted to add onto this to see if anyone could provide further insight. I am using a custom variable resolver to access some session scoped variables. I know the value is there because I can print it out

Re: Disabled with value binding expression

2006-11-28 Thread Simon Kitching
Don't know if this is relevant or not, but the standard resolver will look first in request scope, so a value there will hide any var in session scope. Regards, Simon Toppac wrote: I wanted to add onto this to see if anyone could provide further insight. I am using a custom variable resolver

Re: Disabled with value binding expression

2006-10-31 Thread Toppac
have not included the c taglib header in the JSP file? The page will silently skip the c:set tag in this case. Dennis Byrne -- View this message in context: http://www.nabble.com/Disabled-with-value-binding-expression-tf2546998.html#a7098480 Sent from the MyFaces - Users mailing

Re: Disabled with value binding expression

2006-10-31 Thread Toppac
-- View this message in context: http://www.nabble.com/Disabled-with-value-binding-expression-tf2546998.html#a7098448 Sent from the MyFaces - Users mailing list archive at Nabble.com.

Disabled with value binding expression

2006-10-31 Thread Toppac
inline with the tag. Am I missing something simple here? -- View this message in context: http://www.nabble.com/Disabled-with-value-binding-expression-tf2546998.html#a7097990 Sent from the MyFaces - Users mailing list archive at Nabble.com.

Re: Disabled with value binding expression

2006-10-31 Thread Dennis Byrne
I am trying to use the disabled attribute on some inputText boxes in my application. However, everytime I try to use a binding like this h:inputText disabled=#{mybackingBean.disabled} / In both JSP and JSF, #{backingBeanThatDoesNotExist.propertyThatDoesNotExist} will not throw an exception; it

Re: Disabled with value binding expression

2006-10-31 Thread Craig McClanahan
On 10/31/06, Toppac [EMAIL PROTECTED] wrote: Also I am usingc:set var=disabled value=false scope=page/This is not going to work. JSF expressions do not have access to page scope in a JSP page. You'll need to us something in request scope instead. Craig I typed the wrong thing from memory

Re: Disabled with value binding expression

2006-10-31 Thread Toppac
? The page will silently skip the c:set tag in this case. Dennis Byrne -- View this message in context: http://www.nabble.com/Disabled-with-value-binding-expression-tf2546998.html#a7098480 Sent from the MyFaces - Users mailing list archive at Nabble.com. -- View

Re: Disabled with value binding expression

2006-10-31 Thread Craig McClanahan
On 10/31/06, Toppac [EMAIL PROTECTED] wrote: I am using Facelets with MyFaces, which allows jstl page scoped variables towork. Correct me if I am wrong.Sounds like a question for the Facelets list ... but I sure wonder how Facelets makes this happen during the Apply Request Values through Invoke

RE: Disabled with value binding expression

2006-10-31 Thread Tom Innes
See http://wiki.java.net/bin/view/Projects/FaceletsFAQ c:set, c:if are build time tags I use Facelets as well and the following works for me h:inputText disabled=#{mybackingBean.disabled} / and my backing bean method is defined as public boolean getDisabled() { return

RE: Disabled with value binding expression

2006-10-31 Thread Toppac
() { return this.disabled; } Tom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig McClanahan Sent: Tuesday, October 31, 2006 2:45 PM To: MyFaces Discussion Subject: Re: Disabled with value binding expression