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
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?
>
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