How to fetch a field value in repeatable panel or table row?
We need a solution for an adaptive form - NOT a 'lifecycle' form...
We have a few tables that allow for the rows to be added (addInstance) and removed (removeInstance). This all works.
What I want to do - is to also fetch/display/null the value of a certain filed within a specific instance of a repeatable row.
For example:
- Row1[1].textfield.value=null;
or
- alert(Row1[1].textfield.value);
Nothing I have tried seems to work - for instance, I have tried:
- Row1.instanceManager.instances[1].textfield.value
- guideBridge.resolveNodes("Row1[" + instanceCounter + "].tableItem11").value
Any ideas?