kelp404 / angular-form-builder

Drag and drop to build bootstrap forms in AngularJS.
http://kelp404.github.io/angular-form-builder/
MIT License
599 stars 340 forks source link

Addin a Button component #71

Open situssoft opened 9 years ago

situssoft commented 9 years ago

With the following template, how can I get the button click to fire inside my controller scope?

<div class="form-group">
    <div class="col-sm-offset-2 col-sm-2">
        <button id="{{formName+index}}" class="form-control btn btn-info" onclick="clicked()">{{label}}</button>
    </div>
    <div class="col-sm-8 btn"></div>
    <div class="col-sm-offset-2 col-sm-8">
        <p class='help-block'>{{description}}</p>
    </div>
</div>
MaksJS commented 9 years ago

same problem here