I have a component which hides the Action menu in the Member Groups section.
I wonder is there any way to amend this to also hide the save button? I can't see any way to do it, maybe someone else knows?
Thanks
void TreeControllerBase_MenuRendering(TreeControllerBase sender, MenuRenderingEventArgs e)
{
if (sender.TreeAlias == "memberGroups")
{
var v = e.Menu.Items.Remove(e.Menu.Items[0]);
}
}
Hide Member Groups save button with component
Hi,
I have a component which hides the Action menu in the Member Groups section. I wonder is there any way to amend this to also hide the save button? I can't see any way to do it, maybe someone else knows?
Thanks
is working on a reply...