search for: woudln

Displaying 2 results from an estimated 2 matches for "woudln".

Did you mean: woudl
2006 Mar 08
1
Poor Man''s Continuations
...(this plays nicely with rjs, you can also continuation_call other controllers, and there are no redirects if the call is to an action within the same controller) There are some severe limitations at the moment. There can only be one call from a particlar source action to a target action, i.e. it woudln''t play nicely with a while loop. Also, if your controller''s flow of control is dependent on things other than the ''inputs'' (params and session) then it won''t work reliably. However, there should be a way of specifying these extra inputs (if you put the...
2006 Mar 30
9
Getting data from multiple controllers (Newbie question)
Hello, Assuming I have the following setup for one page: <column A><data from controller 1 /> </columnA> <column B><data from controller 2 /> </columnB> <column C><data from controller 3 /> </columnC> Assuming the page is created for Controller 2, what would be the best way(s) to gather/render the data from the other controllers? Best