mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
527 B
527 B
Dropdown
Creates a Dropdown button with JS events
API
Methods
add_item
float_right
expand
collapse
toggle
Usage
Create
const Dropdown = require('frappejs/frappe/client/ui/dropdown');
let dropdown = new Dropdown({label:'Actions', parent:this.toolbar});
Add Item
Add a new link to the dropdown
dropdown.add_item('Delete', async () => {
this.show_alert('Deleted', 'success');
});
Float Right
Move the element to the right
dropdown.float_right();