How to Hide the Left Side menu inside the List view

Hi All,

I am newbie to ERPNeXT and Helpdesk module. I want to control the side menu inside the List view. But I can’t get any clue / materials regarding this. Please help me on this.

Regards,
Bala

Add client script for that doctype in list. This example will hide side menu in item doctype

frappe.listview_settings['Item'] = { 
        refresh: function(listview) {
                $(".layout-side-section").hide(); 
            
        } 
};

Thank ErpnextRaja… It works!!!

You are welcome… Pls mark as Answer… So that it will help others…

1 Like