Hi Guys,
I am trying to add an restriction for the Students that they can not able to downolad the any containt and also while thye are doing the course they are not able to do the right click on UI so it helps to the download the course cotaint
You can hide or disable your button by using js or jquery
frappe.ui.form.on(‘YourDoctype’, {
refresh(frm) {
setTimeout(() => {
$(“button:contains(‘Camera’)”).hide();
}, 170);
}
});