Re: [4.1.2] EventListener and Effects

2007-09-13 Thread Andreas Andreou
FYI, here are the js docs: http://tapestry.apache.org/tapestry4.1/jsdoc/index.html On 9/13/07, Mike Oestereter <[EMAIL PROTECTED]> wrote: > > thanks a lot i will try this > > On 8/30/07, Igor Drobiazko <[EMAIL PROTECTED]> wrote: > > You can use the tapestry js api to attach the effects: > > > >

Re: [4.1.2] EventListener and Effects

2007-09-13 Thread Mike Oestereter
thanks a lot i will try this On 8/30/07, Igor Drobiazko <[EMAIL PROTECTED]> wrote: > You can use the tapestry js api to attach the effects: > > >dojo.require("tapestry.fx"); >dojo.require("dojo.lfx"); >tapestry.fx.attachPostEffect("some_client_id_1", function(){return > do

Re: [4.1.2] EventListener and Effects

2007-08-30 Thread Igor Drobiazko
You can use the tapestry js api to attach the effects: 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]) }); "some_client_id_1" is the id of the u

[4.1.2] EventListener and Effects

2007-08-30 Thread Mike Oestereter
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 annotat