Hi, I have created a content block which will display a custom resource
field and i am making it dynamic by using Java Script. As we know we can
access an OOTB field for example firstName from Profile as: var
firstName = context.profile.firstName ; But how to access a custom
resource field in the similar way.For my use case i want to access a
field named 'price' from a custom resource say 'productLookUp':I am
using the following code:var price=
context.targetData.cusProductLookUp.price;But when ...