how do i make a variabel for a parent and child in one variabel
Hi i am a litle bit lost here. How can I make a variable that hits 2 different document types that I can then use in one foreach loop ?? I simply can't figure it out :)
I have try to hit the parent first and then the child of that parent but it dont work
here is my code
var selection = Model.Content.Site().Parent<ServiceYdelser>().Children<ServiceYdelse>();
how do i make a variabel for a parent and child in one variabel
Hi i am a litle bit lost here. How can I make a variable that hits 2 different document types that I can then use in one foreach loop ?? I simply can't figure it out :)
I have try to hit the parent first and then the child of that parent but it dont work
here is my code
Hi Mikkel
Do you need a list of all "ServiceYdelser" nodes?
Alex
Hi Alex Yep i need Them all😃 there are only 3
Hi,
returns top most level node in the tree, so not sure why you're adding
before getting the child nodes?
Assuming you'd want
is working on a reply...