I'm trying to reference a parent panel question from my child panel using the parentPanel.questionName syntax and it's not working. What am I doing wrong?
JSON{
"logoPosition": "right",
"pages": [
{
"name": "page1",
"elements": [
{
"type": "paneldynamic",
"name": "question1",
"templateElements": [
{
"type": "text",
"name": "parentName"
},
{
"type": "panel",
"name": "panel1",
"elements": [
{
"type": "text",
"name": "question2",
"title": "Parent {parentPanel.parentName}"
}
]
}
],
"panelCount": 1
}
]
}
]
}