Re: boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi Ken, In fact the user doesn't change the boolean directly, but the action will change the boolean to true to "display" the result of his search. I'm actually trying to "determine" something using the debugger... Thanks for your help and advice:) Xavier If this boolean can be changed thr

Re: boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi Art, I was actually trying with the accessor, but same result. I'm trying the debugger now, there's so much things written in the stacktrace;) I need to learn how to use it:) I'll keep on trying it. Thanks for the pointer:) Xavier On Mar 14, 2006, at 11:21 AM, Dev WO wrote: Is there

Re: boolean changing value in a RR loop

2006-03-14 Thread Ken Anderson
If this boolean can be changed through something the user does, you're probably getting a mismatch from what the page looked like when it was sent out, and when the form came back. You can't change the structure of the page, because when WO reconstitutes the page to fill in the form values

Re: boolean changing value in a RR loop

2006-03-14 Thread Art Isbell
On Mar 14, 2006, at 11:21 AM, Dev WO wrote: Is there any way I could check what is accessing this boolean in a request-response loop? If you haven't created accessor methods for this boolean in your component, do so. Then set debugger breakpoints in the setter and getter methods. You s

boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi guys, I've got something strange happening to me here: I've got a boolean to manage what's displayed in a WOComponent. an action is triggered inside this WOComponent and changes the value of the boolean (to "true"). If I check the value of the boolean inside this action, it has the correc