Details
-
Type:
New Feature
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 6.1.1 CE GA2, 6.1.20 EE GA2
-
Fix Version/s: 6.1.X EE, 6.2.0 CE M2
-
Component/s: Theme Dev, Theme Dev > Resource Importer
-
Labels:
-
Branch Version/s:6.1.x
-
Backported to Branch:Committed
-
Similar Issues:
Description
Resources Importer New Feature:
Currently there isn't a way to define content for nested portlet in the sitemap.json file
proposed definition in sitemap.json
{
"portletId": "118",
"layoutTemplateId": "2_columns_ii",
"columns": [
[
Test.html,
{
"portletId": 42
}
],
[
Test1.html,
Test2.html
]
]
}

I think you'd need to do it a little differently to keep consistency with current portlets. Specifically portletPreferences.
{ "portletId": "118", "portletPreferences": { "layoutTemplateId": "2_columns_ii", "columns": [ [ Test.html, { "portletId": 42 } ], [ Test1.html, Test2.html ] ] } }