Re: Event parameter on the form or Multiple from handle in one method

2012-10-18 Thread Thiago H de Paula Figueiredo
On Thu, 18 Oct 2012 16:02:38 -0300, bhorvat wrote: I like this approach. btw is there any particular reason why this can not be achieved? Something> similar like event link that has parameter event. Or better yet ability to put multiple OnEvent annotations on one method or to specify m

Re: Event parameter on the form or Multiple from handle in one method

2012-10-18 Thread bhorvat
Thiago H de Paula Figueiredo wrote > the event handler could just invoke another method > that handles forms 1, 2 and 3 and invoke another method for form 4. > -- > Thiago H. de Paula Figueiredo > > - I like this approach. b

Re: Event parameter on the form or Multiple from handle in one method

2012-10-18 Thread Thiago H de Paula Figueiredo
On Thu, 18 Oct 2012 15:02:23 -0300, bhorvat wrote: Hi Taha, Hi! Well my main concern is how can I have a few t:form and have them process by the same method. If I omit the form id in the OnEvent annotation then I can achieve that. However then that method is triggered for all other f

Re: Event parameter on the form or Multiple from handle in one method

2012-10-18 Thread bhorvat
Hi Taha, Well my main concern is how can I have a few t:form and have them process by the same method. If I omit the form id in the OnEvent annotation then I can achieve that. However then that method is triggered for all other forms as well. In other words. How can I make it so that form 1,2 and

Re: Event parameter on the form or Multiple from handle in one method

2012-10-17 Thread Taha Siddiqi
Hi Bhovat I am not sure I understood the whole question but from what I understand, you can use form context. public boolean updateComponent(String whatever){ if(whatever){ ... } } regards Taha On Oct 18, 2012, at 2:38 AM, bhorvat wrote: > I am having a bit of a problem that I w