I ended up doing exactly as you described. I used the article controller to return the detail information about the author.
On Dec 14, 3:37 pm, Tom McNeer <[email protected]> wrote: > Jeremy, > > On Mon, Dec 14, 2009 at 5:12 PM, Jeremy Rottman <[email protected]> wrote: > > Once I have this AuthorID I > > need to call a second event that pulls all the data for that Author. > > I guess the first question is whether you actually need a second event. > Certainly, your controller method could call a method in a service component > which would do what's necessary to retrieve the ID, then call another method > to retrieve the author information. Both the original recordset and the > author information could then be placed into a struct which could be > returned to the controller. Or for that matter, the controller method itself > could call sequential methods, using the returned ID as an argument to the > second method. > > If, however, you really do need another event, then you need to add a > "result" in your controller, and have a <results> block in your original > event handler method to react to it. > > -- > Thanks, > > Tom > > Tom McNeer > MediumCoolhttp://www.mediumcool.com > 1735 Johnson Road NE > Atlanta, GA 30306 > 404.589.0560 -- Model-Glue Sites: Home Page: http://www.model-glue.com Documentation: http://docs.model-glue.com Bug Tracker: http://bugs.model-glue.com Blog: http://www.model-glue.com/blog You received this message because you are subscribed to the Google Groups "model-glue" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/model-glue?hl=en
