Hi
I need to create a button in each tree view line like this https://i.imgur.com/3QSZKJB.png?1 with a drop down list of actions to perform like this https://i.imgur.com/DxW3N1Y.png. Is this possible, and if so how?
I already created a the button in eah line:
<button class="btn btn-secondary dropdown-toggle" type="button"/>
But the code in Bootstrap:https://getbootstrap.com/docs/4.0/components/dropdowns/#examples
<div class="dropdown"> <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Dropdown button </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <a class="dropdown-item" href="#">Action</a> <a class="dropdown-item" href="#">Another action</a> <a class="dropdown-item" href="#">Something else here</a> </div> </div>
doens't work in odoo12
Thanks a lot!