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
Hi all
Is it possible to use other on-click event on top of the existing on-click="toggle()" call?
on-click="toggle()"
Cheers
The text was updated successfully, but these errors were encountered:
You can for example: on-click="toggle(), yetAnotherAction()" or on-click="toggle()" on-click="yetAnotherAction()"
Sorry, something went wrong.
How can I override the default behavior of the on-click declared in the component ?
When doing this in my templates :
<dropdown class='col-sm-2' on-click='toggle(), changeOrder()' value='{{_page.orderChoice}}' options='{{_page.order}}' id='filter'></dropdown>
It doesn't work.
Have you tested this zag2art?
To change the function a would make something like this -
Dropdown = require('d-bootstrap/dropdown') Dropdown.prototype.toggle = function(){ // .... } app.component(Dropdown);
instead of use
app.use(require(''d-bootstrap'));
No branches or pull requests
Hi all
Is it possible to use other on-click event on top of the existing
on-click="toggle()"
call?Cheers
The text was updated successfully, but these errors were encountered: