Hi guys,
am a bit surprised, but it's a bit tricky.
What I have so far is a paragraph object:
var p_list= Dynamicweb.Content.Paragraph.GetParagraphsByPageID(123);
foreach(var p in p_list ){
<p>@p.ID</p>
// add snipet here
}
What I needt to do:
I need to access the list of Items - that is a itemList property of this (p) pargraph.
I am able to access the "item type of my page"
var p_item = Dynamicweb.Content.Items.ItemManager.Storage.GetByParagraphId("InfoBox", p.ID);
But that's all, I can't get into item values of it (one of it's properties is my ItemList that I am trying to access),
/Dmitrij