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
If I try to get the vorto value from a dynamic child item I become following:
it works now! here my solution:
@foreach (var item in selection)
{
IPublishedContent sitem= (IPublishedContent)item;
if(@sitem.HasVortoValue("title"))
<li><a href="@item.Url">@sitem.GetVortoValue("title")</a></li>
}
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to GetVortoValue from a dynamic child item
If I try to get the vorto value from a dynamic child item I become following:
it works now! here my solution:
@foreach (var item in selection)
{
IPublishedContent sitem= (IPublishedContent)item;
if(@sitem.HasVortoValue("title"))
{
<li><a href="@item.Url">@sitem.GetVortoValue("title")</a></li>
}
}
is working on a reply...