I have no idea what your architecture is, but if you use Cairngorm which I gather you do since you mentioned in the title you can still do some more or less dirty tircks in there. Put something in your model a boolean flag along with the data you want in your view. In the view bind the boolean data and execute a function (your function) when the bindings tirggers... when the data comes back from the server you just do boolFlah = !boolFlag and it fires your triggers... Dirty but it will do it ...
C ________________________________ From: Darrin Kay <[email protected]> To: [email protected] Sent: Tue, November 3, 2009 10:29:34 AM Subject: Re: [flexcoders] can you get a command result in Cairngorm call a function on the calling page? I can not add any 3rd party tools to the app. can you think of any another way? On Tue, Nov 3, 2009 at 8:23 AM, claudiu ursica <the_braniak@ yahoo.com> wrote: > > > > > > > > > > > > >> >You can attach an IResponder (with the result and fault functions) from your >view as payload to your event. Inside your command you'll get the >response/faul from the server and call the appropriate function on the >IResponder reference. Check for UniversalMind cairngorm extension they explain >this... However is doable and probably withhout the cairngorm extentsions ... > >HTH, >Claudiu > > ________________________________ From: Darrin Kay <dar...@stop- ing.com> >To: flexcod...@yahoogro ups.com >Sent: Tue, November 3, 2009 10:18:51 AM >Subject: [flexcoders] can you get a command result in Cairngorm call a >function on the calling page? > > > > >OK I have a sequence issue, I have a page that calls an event, which goes all >the way to a cf page and the DB, on the Result I need to have a function on >the page get called. Is there a way to do this? I tried a addEventListener >on the submit button, but the sequence is still off. > >Thanks, > D > >

