AJAX Loading the whole web page instead of only the admin page (DataGrid)

I’m new to the Yii Framework and have a problem. I installed the jqAjaxSearch extension, the search works 100% but my problem is the whole page loads instead of only the admin dataGrid view. Is there a method so that only the admin.php view shows?

I guess you use $this->render(‘admin’) and this return all page?

There is another method called renderPartial() which is exactly the same as render(), but does not include the layout.

I think that is what you need.

Thank you rederPartial works 100%