You can use the tapestry js api to attach the effects:

<script type="text/javascript">
       dojo.require("tapestry.fx");
       dojo.require("dojo.lfx");
       tapestry.fx.attachPostEffect("some_client_id_1", function(){return
dojo.lfx.highlight("some_client_id_2", [255, 255, 184]) });
</script>

"some_client_id_1" is the id of the updated component. When the component is
updated, the effect is triggered.
"some_client_id_2" is the id of the component to attach the effect to.

Igor

On 8/30/07, Mike Oestereter <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> I'm upgrading an app from 4.0 to 4.1.2.
>
> In the 4.0 app I have a PropertySelection that has eventListener
> pointing to a @tacos:EventSubmit that has a
> effects="template:{highlight:{any:'[255,255,184], 500, 500'}}"
>
> How do I get the effect thing to work in 4.1.2? My onchnage
> EventListener annotation works well - I'm just missing the effects.
>
> Thanks
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to