Add content in a page

Hi,

I have created name page. Page name is pay-pf.
I have set title in this page and this title is showing.
But I want to add more content like as drop down box, text field button etc.
How can I add this?

You will have to build controls using js, use

frappe.ui.form.make_control({
 df: {
    fieldtype: fieldtype,
    fieldname: name,
    }
});

Hi @netchampfaris,

Where could I find details document for build custom page.
Please give me reference.

I dont think we have documentation for custom pages, but you can look at the POS, it is a custom page

https://github.com/frappe/erpnext/blob/develop/erpnext/accounts/page/pos/pos.js

1 Like