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, I use knockout 3.3.0 work with knockout-bootstrap newest version, I found options not working, below is my code:
<button class="btn btn-success" data-bind="popover: {template: 'addGroup', placement: 'left', title: ''}"> <i class="ion-plus-round"></i> 新建分组 </button>
When I use knockout-bootstrap 0.2.0, it works well
Thanks
The text was updated successfully, but these errors were encountered:
Hi @linuxjcq ! I don't know if you find your answer but yes, knockout-bootstrap works with knockout 3.3.0.
After having explored the sources, I found that you have to declar your options into a object options like this :
<button class="btn btn-success" data-bind="popover: {template: 'addGroup', options : { placement: 'left', title: '' } }"> <i class="ion-plus-round"></i> 新建分组 </button>
Best, Tristan.
Sorry, something went wrong.
No branches or pull requests
Hi,
I use knockout 3.3.0 work with knockout-bootstrap newest version, I found options not working, below is my code:
When I use knockout-bootstrap 0.2.0, it works well
Thanks
The text was updated successfully, but these errors were encountered: