angular-form-builder
angular-form-builder copied to clipboard
Addin a Button component
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>
same problem here