Re: Handle specific bubbled up validate event

2015-04-28 Thread Thiago H de Paula Figueiredo
Yes, it is. :) On Tue, 28 Apr 2015 04:48:47 -0300, Nathan Quirynen nat...@pensionarchitects.be wrote: On 28/04/15 09:40, Nathan Quirynen wrote: Hi, In a page I have a component that contains multiple forms. Now I want to handle the bubbled up validate event from one of these forms in my

Re: Handle specific bubbled up validate event

2015-04-28 Thread Lance Java
The page sees the component as a black box and doesn't know about its internal component structure. This encapsulation is by design. If you want more specific events you'll need to trigger them from your component.

Handle specific bubbled up validate event

2015-04-28 Thread Nathan Quirynen
Hi, In a page I have a component that contains multiple forms. Now I want to handle the bubbled up validate event from one of these forms in my page. I know I can handle the validate event with onValidateFrom[ComponentName](), but this handles all bubbled up validate events from the component

Re: Handle specific bubbled up validate event

2015-04-28 Thread Nathan Quirynen
On 28/04/15 09:40, Nathan Quirynen wrote: Hi, In a page I have a component that contains multiple forms. Now I want to handle the bubbled up validate event from one of these forms in my page. I know I can handle the validate event with onValidateFrom[ComponentName](), but this handles all