Hi, am trying get a loop from custom product fields in razor, but they won't render. What am I doing wrong?
@foreach (var item in GetLoop("Products")) {
foreach (var subitem in GetLoop("Klassetrin.Options")) {
@subitem.TemplateTags()
}
}
@subitem.TemplateTags() does note render any TemplateTags(). It does however, tell me that it can see TemplateTags() code in the template.
Is it not possible to render nested loops in razor?