I have created my first AEM component. The functionality is very simple: when the component is dropped onto a page, the component will generate content that contains a URL and provide a configuration option to open the URL in a new window.
<a class="btn" href="${properties.ctaUrl}" target="${properties.ctaNewwindow}">${properties.ctaLabel}</a>
How do I specify: target="_blank"
? The xtype
of ctaNewwindow
is: checkbox
.