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
thanks brother, if you have material releated to frappe(your own) not frappe site,
can you share, i want to learn frappe by you. you are awesome.
thanks
Hi @briandrogo,
I learn from the frappe documentation and some from community users.
If you want to learn about client scripts then please check it post.
Video Reference:
And also check the all video of @buildwithhussain
He covered all types of scenarios.
Here we share the Playlist: https://youtube.com/playlist?list=PLQGFK8RiEPSK2DbKF5X0jm8dUCOP2TbuH
I hope this helps.
Thank You!
3 Likes
thanks bro, you are doing great
1 Like