When I use $this->renderPartial in CJuiTabs, the content of the view file displayed in out of tab content becasue I missing declare the third param in renderPartial (document for renderPartial)
I’ve looked at the doc for renderPartial but I don’t see a param for $this (controller). I.e. the last two params are booleans for return result & process output.
On a second look, you should pass true instead of $this as your third parameter. This parameter specifies that the result should be returned instead of displayed to the end user. See renderPartial for details.