Hey,
Any options to disable the edit option of comment.
Right now when user comment something they can always edit it on a later and save.
Any option to disable them through custom script
Hey,
Any options to disable the edit option of comment.
Right now when user comment something they can always edit it on a later and save.
Any option to disable them through custom script
Hi @Rahul-R,
please apply the custom/client script.
frappe.ui.form.on('Your DocType', {
refresh: function(frm) {
$('.btn.btn-link.action-btn').hide();
}
});
Then reload (Ctrl + Shift + R) and check it.
Thank You!
Good Ideal!
But how i can only disable edit some comment have duration more than 5 minutes (ex).
Thank you!