Open gioppoluca opened 9 years ago
I have a same problem. not able to access data after dynamic-form
<div ng:repeat="records in datalist track by $index" class="fullwidth">
{{records}} <!-- this is displaying data -- >
<dynamic-form class="col-md-12 no-padding" template="custFormTemplate" ng-model="custFormData[$index]" ng-submit="processForm()">
</dynamic-form>
</div>
{{records}} <!-- this is NOT displaying data -- >
</div>
@JigneshRana In your case, I think it's the spare closing </div>
causing issues with values displaying after a dynform.
As to the dynform itself... I'm not sure what's going on, there.
It seems that is not possible to have the directive inside the ng-repeat, like the following code