Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ng-repeat support #54

Open
gioppoluca opened this issue Jul 21, 2015 · 2 comments
Open

ng-repeat support #54

gioppoluca opened this issue Jul 21, 2015 · 2 comments

Comments

@gioppoluca
Copy link

It seems that is not possible to have the directive inside the ng-repeat, like the following code

<accordion-group heading="{{nodetype.type}}" ng-repeat="nodetype in nodetypes">
    <dynamic-form class="col-md-12" template-url="{{nodetype.file}}" ng-model="{{nodetype.data}}" ng-submit="{{nodetype.process}}()">
  </dynamic-form>
</accordion-group>
@JigneshRana
Copy link

JigneshRana commented Apr 14, 2018

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>

@danhunsaker
Copy link
Owner

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants