How to hide-menu button in frappe at monthly attendance report

Hi @briandrogo,

Please check the post.

If your report is Custom Server Script then please apply to the report.js file.
Here, we share some syntax. please check it.

frappe.query_reports["Your Report Name"] = {
	"filters": [
		{
			// Your filter Data
		},
	],
	"onload": function(report) {
		$(".menu-btn-group").hide();
	}
};

I hope this helps.

Thank You!

4 Likes