ctx['DisplayTemplateData'] = new Object();
for (var objItem in ctx.CurrentItem)
{
console.log(objItem + " Value is :" + $getItemValue(ctx, objItem));
}
using above code you can read all Property values in ctx object.
for (var objItem in ctx.CurrentItem)
{
console.log(objItem + " Value is :" + $getItemValue(ctx, objItem));
}
using above code you can read all Property values in ctx object.