Hi,
I have a view like this: (this is from a view called from an action, and not from a layout page)
<container>
<div id="menu">
<!-- some content -->
</div>
<div id="content">
</div>
</container>
And I would like to call an action and renderPartial its view inside #content.
I’ve added this into #content and it displayed the wanted view, but I would also like to call his action method.
$this->renderPartial('myView');
The initial idea was to do this with Ajax but it interferes with a wysiwyg that I’m using.
Any suggestions please.