Reputation: 311
I've a web content and I'd like to import another portlet inside of my web content. Is that possible?
I've tried using the code:
#set($TopNaviC = $journalContentUtil.getContent($themeDisplay.getCompanyGroupId(),'11105', null, "$locale",$theme_display))
$TopNaviC
Yours Heikki
Upvotes: 0
Views: 471
Reputation: 2257
This is a correct example
#set ($local_temp_content = $journalContentUtil.getContent($scope_group_id, $temp_article_id, null, "$locale", $theme_display))
Upvotes: 0
Reputation: 126
You can archieve that with:
<div id="embedded-welcome-portlet">
<runtime-portlet name="56" instance="5555" queryString=""/>
</div>
...where...
Upvotes: 1