Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I am rendering a component which uses content from a separate page on the website using the Content Picker.
The module "Slider" is a separate page of the type "StandardContentBlockPage" with tabs such as "Image", "Content" etc.
Currently, it appears that I do not have access to any of the tabs or properties on "Slider" - only its URL, using Slider.Modules.Url()
What do I have to write out in the code to have access to these other properties?
Thanks,
Julius
I managed to work it out after quite a while.
Create a variable ModuleItems = item.Modules for the modules and then access the properties using .Value - in this case
var Image = ModuleItems.Value
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How To Access Properties using The Content Picker
I am rendering a component which uses content from a separate page on the website using the Content Picker.
The module "Slider" is a separate page of the type "StandardContentBlockPage" with tabs such as "Image", "Content" etc.
Currently, it appears that I do not have access to any of the tabs or properties on "Slider" - only its URL, using Slider.Modules.Url()
What do I have to write out in the code to have access to these other properties?
Thanks,
Julius
I managed to work it out after quite a while.
Create a variable ModuleItems = item.Modules for the modules and then access the properties using .Value - in this case
var Image = ModuleItems.Value
is working on a reply...