Hi Greg, On 12/1/05, Greg Donald <[EMAIL PROTECTED]> wrote: > Do you still have to reassign the data in the view for use in the > template after having already created it once in the action? That is > quite the pain.
in View::execute() you can quickly import all request parameters or attributes into your template... for parameters, use View::importAttributes() (yes the name is correct) for attributes use $this->setAttributes($request->getAttributes()); be sure to check out the latest SVN version for many bugfixes and enhancments -ahmed

