Currently there is not a way to define a form with ng-submit within a dialog, and have the `<button type="submit">` within the actions.
Take for example this ui bootstrap modal example, where the parent elemint is a form.
```
<form name="formData" ng-submit="form.submit()" novalidate="novalidate">
<div class="modal-header">
UI Bootstrap Modal form Demo
</div>
<div class="modal-body">
<input type="text" required ng-model="name">
</div>
<div class="modal-footer">
<button class="btn btn-primary"
type="submit">
OK
</button>
<button class="btn btn-warning" type="button" ng-click="cancel()">Cancel</button>
</div>
</form>
```
Hello,
Our Kendo UI for Angular product should be used to achieve the described: https://www.telerik.com/kendo-angular-ui
Regards,
Nencho
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
It will be possible when this request "Allow complete content of dialog to be passed to the service" (https://github.com/telerik/kendo-angular/issues/1046) has been implemented.
this would be pretty helpful to me!