mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
534 B
534 B
UI
Frappe.js UI library helps create elements from the Native DOM
frappe.ui.add
Add a new HTMLElement
let div = frappe.ui.add('div', 'box', parentElement);
frappe.ui.remove
Remove a new HTMLElement from its parent
frappe.ui.remove(element);
frappe.ui.add_class
Add a class to an existing document
frappe.ui.add_class(element, 'box');
frappe.ui.make_dropdown
Create and return a new dropdown element
let dropdown = frappe.ui.make_dropdown('Actions', this.toolbar);