AEM 6.3 : Getting properties of dynamic child node created in multifield component after it is authored
Hi I'm using AEM 6.3 Touch-UI
This is the dailog.xml for multi field in separate column

This is the dynamic node structure item0, item1 and item2 created under page after I've authored the multi field component thrice...

I tried to pas the parameters through <sly data-sly-use.linkInfo="subLinkLogic.js" @ resPath = item.path>
with the below code, will the linkType property of the dynamic nodes is set to childLinkType ?
TIA
"use strict";
use(function () {
var locResPath = this.resPath;
granite.resource.resolve(locResPath).then(function(child) {
properties.resolve(child);
});
return properties;
var childLinkType = locResPath.properties.get("linkType");