Did anyone used this?

I cant use the example in the tapestry5-jquery as it complains that slider
is not a mixin, so I guess that the example is old as slider is now a
component. Still I have tried to use

<t:zone t:id="zoneSlideChange">
            <div id="status">${textZone}</div>
</t:zone>

<t:form>
<t:textfield t:id="textZone" t:mixins="jquery/bind"
                event="onchange" eventType="onfocus" zone="testzone"/>
</t:form>

----------------

@Property
    @Persist
    private String textZone;
    @InjectComponent
    private Zone zone;

    @OnEvent(value = "onchange")
    public Object onchange(String value) {
        textZone = "The SlideChange event was triggered.";
        return zone.getBody();
    }

Does anyone know where is the problem?

Cheers
Boris

Reply via email to