Re: Ways to trigger on value change for the select component

2013-03-26 Thread Ivan Khalopik
It depends on your task. If it is related to validation you can campare values in onValidate handler: @OnEvent(value=EventConstants.VALIDATE, component="mySelect") void validateMaySelect(MyValue newValue) { if (!myValue.equals(newValue)) { // your code here } } Or you can use getter a

Re: Ways to trigger on value change for the select component

2013-03-25 Thread Norman Franke
On Mar 25, 2013, at 9:56 AM, Thiago H de Paula Figueiredo wrote: > On Mon, 25 Mar 2013 09:21:11 -0300, marin mamic wrote: > >> Hi all, > > Hi! > >> I was wondering if there are any other ways to trigger a server side method >> when value is changed in the select component except ajax call? >

Re: Ways to trigger on value change for the select component

2013-03-25 Thread Thiago H de Paula Figueiredo
On Mon, 25 Mar 2013 09:21:11 -0300, marin mamic wrote: Hi all, Hi! I was wondering if there are any other ways to trigger a server side method when value is changed in the select component except ajax call? Tapestry or not, the answer for you question is "no, unless you submit the wh