Hello.
Is there a good way that if i click on a customer entry on my customer list to open the dashboard tab by default? I’m wanting an easy way for my users to be able to get all info relating to a customer and the dashboard tab seems like it would do this.
Or maybe there is a better method to do this?
Hi
you can try this client script;
frappe.ui.form.on(‘Customer’, {
refresh: function(frm) {
setTimeout(() => {
const dashboardTab = document.getElementById(‘customer-dashboard_tab-tab’);
if (dashboardTab) {
dashboardTab.click();
}
}, 200); // slight delay to ensure UI is ready
}
});