Posts

Showing posts from September, 2024

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

Image
AssitEdit property:   https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/properties/devenv-assistedit-property OnAssistEdit-trigger: https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/triggers-auto/pagefield/devenv-onassistedit-pagefield-trigger So we just need to set this 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 capabilities . Thanks for reading Regards, Khushbu Rajvi