We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
action.html probably missing something to handle the onClick that is passed. e.g
{ type: 'actions', items: [ { type: 'button', "style": "md-warn", title: 'Regress', onClick: () => { console.log('REG'); } }, { type: 'button', title: 'Advance', onClick: () => { console.log('ADV'); } } ] },
The text was updated successfully, but these errors were encountered:
The submit.html template used for the button and submit addons is missing an ng-click on the button, like in the bootstrap decorator:
submit.html
button
submit
ng-click
ng-click="buttonClick($event,form)"
Sorry, something went wrong.
@mnzaki Can confirm this solution works.
No branches or pull requests
action.html probably missing something to handle the onClick that is passed.
e.g
The text was updated successfully, but these errors were encountered: