Multi-Url picker in nested content not mapping urls
Im having some issues getting the values in any multi-Url field used in Nested content (Umbraco version 7.6.4). My urlPicker keeps coming back null - but I am using RJP multiurl.
I appreciate any feedback.
var UrlPicker = secondItem.GetPropertyValue<IEnumerable<RJP.MultiUrlPicker.Models.Lin>>("link");
I switched to using the Umbraco related url picker which seems to do what I need. I was not able to get the RJP compatability worked out without potentially switching to a controller based solution.
Multi-Url picker in nested content not mapping urls
Im having some issues getting the values in any multi-Url field used in Nested content (Umbraco version 7.6.4). My urlPicker keeps coming back null - but I am using RJP multiurl.
I appreciate any feedback.
var UrlPicker = secondItem.GetPropertyValue<IEnumerable<RJP.MultiUrlPicker.Models.Lin>>("link");
returns null
This shows that the link property is not null, and actually is a valid object. The GetPropertyValue method must be failing to map it properly
I switched to using the Umbraco related url picker which seems to do what I need. I was not able to get the RJP compatability worked out without potentially switching to a controller based solution.
is working on a reply...