You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Chuck Brinkman <ch...@gmail.com> on 2010/01/19 22:23:47 UTC

Thanks for wicket: it is awesome and I'm just getting to know it

Just wanted to say thanks for wicket.

I have a ListMultipleChoice and wanted to update the page based on at least
one item selected or no items selected.  It took a while for me to locate

lmc.add(new AjaxFormComponentUpdatingBehavior("onChange") {
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
                  // do the right thing here!
            }
        });

but once I did it just worked.  I like things that just work.  I don't know
js very well so just java and just html if real attractive to me.

Thanks again for wicket.

Chuck

Re: Thanks for wicket: it is awesome and I'm just getting to know it

Posted by nino martinez wael <ni...@gmail.com>.
And it grows on you, the deeper you dig the more of these things you
discover :)

2010/1/19 Chuck Brinkman <ch...@gmail.com>

> Just wanted to say thanks for wicket.
>
> I have a ListMultipleChoice and wanted to update the page based on at least
> one item selected or no items selected.  It took a while for me to locate
>
> lmc.add(new AjaxFormComponentUpdatingBehavior("onChange") {
>            @Override
>            protected void onUpdate(AjaxRequestTarget target) {
>                  // do the right thing here!
>            }
>        });
>
> but once I did it just worked.  I like things that just work.  I don't know
> js very well so just java and just html if real attractive to me.
>
> Thanks again for wicket.
>
> Chuck
>

Re: Thanks for wicket: it is awesome and I'm just getting to know it

Posted by "nmelendez@getsense.com.ar" <nm...@getsense.com.ar>.
yes, looks like real desktop application code but it is web :)

On Tue, Jan 19, 2010 at 6:23 PM, Chuck Brinkman <ch...@gmail.com> wrote:

> Just wanted to say thanks for wicket.
>
> I have a ListMultipleChoice and wanted to update the page based on at least
> one item selected or no items selected.  It took a while for me to locate
>
> lmc.add(new AjaxFormComponentUpdatingBehavior("onChange") {
>            @Override
>            protected void onUpdate(AjaxRequestTarget target) {
>                  // do the right thing here!
>            }
>        });
>
> but once I did it just worked.  I like things that just work.  I don't know
> js very well so just java and just html if real attractive to me.
>
> Thanks again for wicket.
>
> Chuck
>