Making The Preview Page?

I would like to make a preview page, it will get object model from creating page then show to users for reviewing before save. But of course it must be validated before sending. But the validation coming with save() function in the model. I want to validate data first, then send to preview page, finally saving. Can anyone show me a solution? Thank alot :)

I’ve been thinking about this too. I don’t think there is an existing Yii solution but coding it should be pretty straightforward. My initial idea is create preview action that simply validates the model and calls the appropriate view. This would probably be initiated via an AJAX request and will populate a modal popup.

Is this for a WYSIWYG editor or a collection of form elements?