Add the OnBase Button to the Toolbar - Integration for Esri - English - Foundation 22.1 - OnBase - external

Integration for Esri

Platform
OnBase
Product
Integration for Esri
Release
Foundation 22.1
License

To allow users to access the OnBase widget within the application, you must add another toolbarGroup to the array. To do so, follow these steps:

  1. Open the configuration file in a text editor such as Notepad. The configuration file is usually named Desktop.json.js.
  2. Locate the second toolbarGroups array in the configuration file.
  3. Insert the following code to add another toolbarGroup to the array:
    Note:

    Ensure that the code is inserted at the correct node level.

    ,
    {
        "id": "OnBaseGroup",
        "type": "toolbarGroup",
        "name": "OnBase",
        "items": [
          {
            "id": "OnBaseButton",
            "type": "button",
            "iconUri": "Resources/Images/onbase.png",
            "command": "ActivateOnBase",
            "commandParameter": null,
            "hideOnDisable": false,
            "name": "OnBase",
            "tooltip": "OnBase"
          }
        ]
    }
  4. Save and close the configuration file.