Enable Sidebar in a custom workspace

KOUSTAV DUTTA
Tera Expert

Hi Team,

 

We have created a workspace using UI builder and want to enable "Sidebar" in there. We have went through the KB "https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1213249" but the functionality is not working.

 

The steps mentioned in this KB, we are not able to find any macroponent name for our custom workspace or any proper action config in sys_ux_form_action_layout.LIST for our custom workspace or the similar ones. Hence can anyone please help how to set up "Sidebar" in a custom workspace?

 

Thanks!!

1 REPLY 1

Community Alums
Not applicable

Hi @KOUSTAV DUTTA ,

  1. In the navigation filter, go to Experiences and open your experience. 

  2. Under the related list "UX Page Properies", find the property called "chrome_toolbar". 

  3. Make sure that it is Type "json" and formatted like the following example:

    [
       {
          "id":"home",
          "label":{
             "message":"Home",
             "translatable":true
          },
          "icon":"home-outline",
          "viewportInfo":{
             
          },
          "routeInfo":{
             "route":"home"
          },
          "group":"top",
          "badge":{
             
          },
          "presence":{
             
          },
          "availability":{
             
          },
          "order":100
       },
       {
          "id":"list",
          "label":{
             "message":"List",
             "translatable":true
          },
          "icon":"list-outline",
          "viewportInfo":{
             
          },
          "routeInfo":{
             "route":"order-lists"
          },
          "group":"top",
          "badge":{
             
          },
          "presence":{
             
          },
          "availability":{
             
          },
          "order":200
       }
    ]​

    From this thread : https://www.servicenow.com/community/developer-forum/workspace-navigation-sidebar-doesn-t-appear/m-p...