Skip to main content

Notifications

Announcements

No record found.

Dynamic 365 Business central: How to hide/disable the AssistEdit button

Khushbu Rajvi. Profile Picture Khushbu Rajvi. 8,274 Super User 2025 Season 1
 

The AssistEdit button is a feature that allows users to quickly access a related page or record for more details. If you want to customize the behavior of this button, you can either hide it or disable it entirely through the page’s properties. This guide will walk you through how to modify the AssistEdit property in a page extension to hide or disable it as needed.

To hide/disable the AssistEdit button: we just need to set AssistEdit Property to false, and this button will be hidden on the page (UI). 

pageextension 50703 usersettting extends "User Settings"
{
    layout
    {
        modify("UserRoleCenter")
        {
            AssistEdit = false;
        }
 
    }
}





The AssistEdit Property must be set to True to enable the assist-edit capabilitiesOnAssistEdit (Page Field) trigger



Thanks for reading...!!☺️


Regards,

Khushbu Rajvi

Comments

*This post is locked for comments