entered into the textfield and can see the server side handler being called,
but cubeCard.tagList is null.
Any ideas?
> Date: Tue, 23 Apr 2013 21:27:53 +0200
> From: mailingl...@j-b-s.de
> To: users@tapestry.apache.org
> Subject: Re: Handling onEvent change from a Select component
>
&
Hi Ben, a really basic example. I'm assuming your trying to loop the zones,
I hope this helps.
${product}
${cardTypes}
@Property
private CardType cardType;
@Property
private String cardTypes;
@InjectComponent
private Zone cardTypeZone;
private String produc
Hi Ben!
I am using the tapestry-jquery mixin for this:
tml:
t:validate="required" value="yourValue"
t:mixins="jquery/bind" bind.context="${yourValue.pk}"
bind.event="yourSelectionChanged" bind.eventType="change"/>
page:
public Object onYourSelectionChanged(final long pk)
{
Syste
After a lot of Googling around I'm unable to find a solution to my problem. I
want to handle the change event from a Select Component. I'm creating a bunch
of these components in a loop:
And I've got the following handler declaration:
@OnEvent(component="type", value = "change")
pub