tapestry-jquery has rewritten Tapestry's javascript and I'm not too
familiar with it. I'm sure there's a function in there to trigger a zone
update.
On 21 Aug 2013 15:26, "Lance Java" <lance.j...@googlemail.com> wrote:

> You could use data attributes and some clientside jquery just like a
> non-tapestry app.
>
> TML
> <t:grid row="current" id="myGrid">
>    <p:someCell><t:select … data-foo="current.foo" data-bar="current.bar" …
> /></p:someCell>
> </t:grid>
>
>
>
> JS
> $("#myGrid").find("select").change(function() {
>    var select = $(this);
>    var foo = select.data("foo");
>    var bar = select.data("bar");
>    doStuff(foo, bar);
>
> };
>

Reply via email to