A button on the command bar is hidden when it should be visible

Applies to:   Power Apps
Original KB number:   4552163

Determine why a button is hidden

A button can be hidden due to an enable rule or display rule on the command associated with the button evaluating to false. It could be that the associated command has a Mscrm.HideOnModern display rule that would hide the button in Unified Interface applications. A HideCustomAction could also have been created that would force the button to be hidden. If the user is offline, custom commands and default commands without the Mscrm.IsEntityAvailableForUserInMocaOffline enable rule won't be displayed.

Warning

  • Any display rule of the EntityPrivilegeRule type with a PrivilegeType value of one of the following (Create, Write, Delete, Assign, Share) will evaluate to false if the entity has the Read-Only in Mobile option enabled, which will force the entity to only permit Read privilege. Examples of some of the most common default system rules that will evaluate to false when the Read-Only in Mobile flag is enabled on the entity, are as follows, but not limited only to this list (Mscrm.CreateSelectedEntityPermission, Mscrm.CanSavePrimary, Mscrm.CanWritePrimary, Mscrm.CanWriteSelected, Mscrm.WritePrimaryEntityPermission, Mscrm.WriteSelectedEntityPermission, Mscrm.CanDeletePrimary, Mscrm.DeletePrimaryEntityPermission, Mscrm.DeleteSelectedEntityPermission, Mscrm.AssignSelectedEntityPermission, Mscrm.SharePrimaryPermission, Mscrm.ShareSelectedEntityPermission). You can edit the entity and uncheck the Read-Only in Mobile option to permit these rules to evaluate to true, provided the privilege being tested by the rule is also granted to the user.
  • Do not remove the Mscrm.HideOnModern display rule from a command to force a button to appear in the Unified Interface. Commands that have the Mscrm.HideOnModern display rule are intended for the legacy Web Client interface and are not supported in the Unified Interface, and may not work correctly.

The in-app tool, Command Checker, will be used to inspect the ribbon component definitions to help us determine why the button is hidden.

To enable the Command Checker tool, you must append a &ribbondebug=true parameter to your Dynamics 365 application URL. For example: https://yourorgname.crm.dynamics.com/main.aspx?appid=<ID>&ribbondebug=true.

Screenshot shows the parameter is appended to a Dynamics 365 application U R L.

Note

Currently, the Command Checker tool only works in a web browser and does not work in Android and iOS apps. A future update is planned to make this work in these mobile apps.

Once the Command Checker tool has been enabled, within the application in each of the various command bars (global, form, grid, subgrid), there will be a new special "Command Checker" button to open the tool (it may be listed in the More overflow flyout menu).

  1. Navigate to the page in the application where the button should be displayed.

  2. Locate the command bar that the button is expected to be shown in.

  3. Click the "Command checker" button (it may be listed in the More overflow flyout menu).

  4. Find and click your button in the list of buttons displayed in the left-most pane of the Command Checker tool. Buttons that are not visible will be denoted by de-emphasized and italicized font along with the (hidden) term. The following example shows the New button on the contact entity's grid page is not visible and is represented by an item labeled New (hidden).

    Note

    If your button is not listed, it could be due to a HideCustomAction customization that may have been installed, or the associated command has a Mscrm.HideOnModern display rule. At the time of writing this guide, the Command Checker tool does not list buttons that have been hidden by a HideCustomAction or Mscrm.HideOnModern display rule. We are currently working to augment this listing to include this information in a future update.

    Screenshot shows the New button on the contact entity's grid page is not visible and is represented by an item labeled New (hidden).

    Note

    If the button is still hidden when all rules evaluate to True, it may be due to context sensitive commands in grids. When records are selected on a grid, all buttons without a SelectionCountRule element will be considered not relevant to the selected record(s). And they're hidden even if their rule evaluation is True. Note that flyouts aren't affected since flyout children might still have record based commands.

  5. Click the Command Properties tab to display the details of the command for this button. This will show the enable rules and display rules, along with the result (True, False, Skipped) of each rule evaluation. The following example shows the New (hidden) button's command to be Mscrm.NewRecordFromGrid and there is an enable rule named new.contact.EnableRule.EntityRule that has evaluated to False, as a result the button will be hidden.

    Screenshot shows the Command properties details of the command for the New (hidden) button.

  6. Expand the new.contact.EnableRule.EntityRule enable rule, by clicking on the chevron icon to view the details of the rule. To understand why a rule evaluates to True or False requires a little understanding of the type of rule. For details of each type of rule, please refer to Define ribbon enable rules, and Define ribbon display rules. The following example shows that the rule type is Entity and the entity logical name is account. Since the current entity is contact, which is not equal to account, this rule returns False.

    Screenshot shows an example to view the details of the rule.

  7. The approach needed to fix a button's visibility will depend on the various customizations in your specific scenario. Considering our example:

    • If this rule was created erroneously, such that the entity declared in the rule was intended to be contact but was set to account, you could edit the new.contact.EnableRule.EntityRule enable rule and make changes that would permit the rule to evaluate to true.
    • If this rule was added to the command unintentionally, you could modify the Mscrm.NewRecordFromGrid command and remove the new.contact.EnableRule.EntityRule enable rule from the command definition.
    • If the command is an override of a Microsoft published definition, then this custom version of the command could be deleted to restore the default functionality.

Repair Options

Select a repair option from one of the tabs below. The first tab is selected by default.

How to delete a command

If there is another solution layer that contains a working definition of the command, then you can delete the definition to restore the inactive working definition.

If this is the only layer and you no longer need the command, then you can remove it from your solution if no other button is referencing the command.

In order to delete a command, we need to determine which solution installed the customization:

  1. Click the View command definition solution layers link below the command name to view the solution(s) that installed a definition of the command.

    Screenshot of the View command definition solution layers link under a command name.

  2. The Solution Layers pane will display the layering of each ribbon component definition a particular solution has installed. The layer at the top of the list is the current definition that is used by the application, the other layers are inactive and are not used by the application at the moment. If the top solution is uninstalled or an updated version is installed that removes the definition, then the next layer will become the current active definition used by the application. When an unmanaged Active solution layer is present, it will always be the definition the application uses. If there is no Active solution listed, then the solution listed at the top of the list will be the definition used by the application. Any custom-managed solutions that are not published by Microsoft will also take precedence over Microsoft published solution layers.

    The Entity context indicates the object the ribbon customization is on, if "All Entities" is listed, then the layer is from the Application Ribbon client extensions and not entity specific, otherwise the logical name of the entity will be listed.

    When there are two or more layers, you can select two rows and click Compare to view a comparison of the definitions brought in by each solution.

    Clicking Back will return to the previous Command Checker window.

    The following image shows the solution layers for the command in our example, and indicates that there is a solution layer for the contact entity that it is an unmanaged customization as denoted by the solution titled Active. Your actual scenario may differ, you may not have an Active solution layer, you may have a managed solution and the name of that solution will be listed here.

    Screenshot shows an example of the solution layer.

  3. Now that we have reviewed the solution layers and identified the solution that installed the customization, we must fix the definition in the appropriate solution.

Select one of the following options that matches your particular scenario:

The command is in the unmanaged Active solution

To delete a command in the Active unmanaged solution layer, we will export an unmanaged solution containing the entity or Application Ribbon and edit the <RibbonDiffXml> node in the customizations.xml file, and then import a new version of this solution where this command has been removed in order to delete the component. See Export, prepare to edit, and import the ribbon.

The command is entity-specific

Based on our example scenario, we identified the entity is contact and the command that needs to be deleted is Mscrm.NewRecordFromGrid and it is declared in the Active unmanaged solution layer from a publisher named DefaultPublisherCITTest.

  1. Open Advanced Settings.

  2. Navigate to Settings > Solutions.

  3. Click New to create a new solution, set Publisher to the value shown in the Command Checker's solution layers listing for the command and the Active solution layer. (In our example, this is DefaultPublisherCITTest)

  4. Click Entities.

  5. Click Add Existing.

  6. Select the entity your command is defined on (In our example, this is contact) and click OK.

  7. Make sure you uncheck the Include entity metadata and Add all assets options before clicking Finish.

  8. Click Save.

  9. Click Export Solution and export unmanaged solution.

  10. Extract the .zip file.

  11. Open the customizations.xml file.

  12. Locate the <Entity> node child of the entity node you wish to edit and locate its child <RibbonDiffXml> node.

  13. Locate the <CommandDefinition> node. (In our example, ID of the <CommandDefinition> node is Mscrm.NewRecordFromGrid, so we would locate the following node)

    Screenshot shows the location of the CommandDefinition node.

  14. Edit the <RibbonDiffXml> node and remove the specific <CommandDefinition> node that has the ID of the command you wish to delete. Make sure you don't unintentionally delete other <CommandDefinition> nodes that may be present. (Based on our example, we would delete the <CommandDefinition> node in which ID is Mscrm.NewRecordFromGrid.)

    Screenshot to delete the CommandDefinition node.

  15. Save the customizations.xml file.

  16. Add the modified customizations.xml file back to the solution .zip file.

  17. Import the solution file.

  18. Click Publish All Customizations.

The command is in the Application Ribbon (applies to "All entities")

If the command is not entity-specific, rather it is applicable to "All Entities" declared in the Application Ribbon, then the steps will be slightly different as follows:

  1. Open Advanced Settings.
  2. Navigate to Settings > Solutions.
  3. Click New to create a new solution, set Publisher to the value shown in the Command Checker's solution layers listing for the command and the Active solution layer.
  4. Click Client Extensions.
  5. Click Add Existing.
  6. Click Application Ribbons.
  7. Click Save.
  8. Click Export Solution and export unmanaged solution.
  9. Extract the .zip file.
  10. Open the customizations.xml file.
  11. Locate the root <RibbonDiffXml> node.
  12. Locate the <CommandDefinition> node.
  13. Edit the <RibbonDiffXml> node and remove the <CommandDefinition> node that has the ID of the command you wish to delete. Make sure you don't unintentionally delete other <CommandDefinitions> nodes that may be present.
  14. Save the customizations.xml file.
  15. Add the modified customizations.xml file back to the compressed solution .zip file.
  16. Import the solution file.
  17. Click Publish All Customizations.
The command is from a custom-managed solution that my company authored

To delete a command that was installed by a custom-managed solution that you created, follow these steps:

  1. In your separate development organization that has the unmanaged source version of your custom solution, complete the steps listed above for the The command is in the unmanaged Active solution option.
  2. Increment the Version of your custom solution.
  3. Export solution as managed.
  4. In your separate affected organization, import this new version of your custom-managed solution.
The command is from a custom-managed solution that my company did not author (from third-party/ISV)

To delete a command that was installed by a custom-managed solution that was created by a third-party/ISV, you will need to contact the author of the solution and request a new version of the solution that has removed the specific command definition and then install this new solution into your affected organization.