IBM Business Analytics

 View Only
Expand all | Collapse all

Custom Extension - upgraded from 11.0.13 to 11.2.4 and Label is not showing for Customer Folder

  • 1.  Custom Extension - upgraded from 11.0.13 to 11.2.4 and Label is not showing for Customer Folder

    Posted Wed April 05, 2023 09:48 AM

    We've just upgraded from 11.0.13 to 11.2.4 and I noticed the custom extension that we have is no longer showing the label of the custom folder we have, it is just showing the icon of of common-folder.   Also, the HOME button in 11.0.13 is a picture of a house and in 11.2.4 it is the hamburger Open Menu Item.  Does anyone know how i can fix 11.2.4 to look EXACTLY like 11.0.13?  Thanks in advance. 





    {
        "name":"Historical_Outputs_Folder",
        "schemaVersion": "2.0",
        "extensions": [
        {
            "perspective": "common",
            "comment": "There is a special meta perspective called COMMON. Adding contributions to this perspective will cause the extension to be applied to All perspectives.",
            "features": [{
                "id": "home.button.historical.outputs.folder",
                "toolItems": [
                {
                    "comment": "This code adds a button to easily access an important folder.",
                    "id": "home_button_historical_outputs_folder",
                    "containerId": "com.ibm.bi.glass.navbarLeadingGroup",
                    "label": "Historical Outputs",
                    "type": "Button",
                    "icon": "common-folder",
                    "weight": 100,
                    "push": "true",
                    "comment": "The greater the weight, the higher the item will appear in the container.",
                    "actionController": "bi/glass/api/FolderOpener",
                    "options": {
                        "skipAncestors": true,
                        "path": ".public_folders/Historical Outputs"
                    }
                }
                ]
            }]
        }]}



    ------------------------------
    Sharon Callen
    ------------------------------


  • 2.  RE: Custom Extension - upgraded from 11.0.13 to 11.2.4 and Label is not showing for Customer Folder

    IBM Champion
    Posted Thu April 20, 2023 04:17 AM

    Hi Sharon,

    Regarding the label, you can test the following:

    {
        "name":"Historical_Outputs_Folder",
        "schemaVersion": "2.0",
        "extensions": [
        {
            "perspective": "common",
            "comment": "There is a special meta perspective called COMMON. Adding contributions to this perspective will cause the extension to be applied to All perspectives.",
            "features": [{
                "id": "home.button.historical.outputs.folder",
                "toolItems": [
                {
                    "comment": "This code adds a button to easily access an important folder.",
                    "containerId": "com.ibm.bi.glass.navbarLeadingGroup",
                    "type": "Button",
                     "push": "true",
                    "comment": "The greater the weight, the higher the item will appear in the container.",
                    "actionController": "bi/glass/api/FolderOpener",
    
                    "items": [
                    {
                      "id": "home_button_historical_outputs_folder",
                      "label": "Historical Outputs",
                      "icon": "common-folder",
                      "weight": 0
                    }
    
                    "options": {
                        "skipAncestors": true,
                        "path": ".public_folders/Historical Outputs"
                    }
                }
                ]
            }]
        }]}
    
    


    Best regards,



    ------------------------------
    Patrick Neveu
    Positive Thinking Company
    IBM Champion
    ------------------------------