Indeed, using CQ6 as of today.
Unfortunately, no luck. I tried creating a column control through the geometrixx demo site.
And the different column options are indeed present in the layout selector.
Therefore, something is not right with my site setup.
I have a simple template:
<%@include file="/libs/foundation/global.jsp"%>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Column Control</title>
<link rel="stylesheet" href="https://forums.adobe.com/etc/designs/ColumnControl/css/styles.min.css">
<cq:include script="/libs/wcm/core/components/init/init.jsp"/>
</head>
<body>
<cq:include path="header" resourceType="ColumnControl/components/page/HeaderPage" />
<div class="content__body">
<cq:include path="card-container-1" resourceType="foundation/components/parsys" />
</div>
</body>
</html>
Looking through the column control source code:
libs/foundation/components/parsys/colctrl/layoutdatasource/layoutdatasource.jsp
Think this is my problem:
String layouts = contentStyle.get("layouts",String.class); // if no layout are set if (layouts == null || layouts.equals("")){ // return empty data source request.setAttribute(DataSource.class.getName(), EmptyDataSource.instance()); return; }
It cannot access the layouts properties.
Thanks for your assistance.
Kind regards
Toby