Field Path

GridMate provides a component to deal with paths. Unlike Salesforce Standard Path, GM - Field Path is not related to a specific path. The component can be used for many fields on the same object without any limitation. Also the stages can be customized to group different values under the same umbrella.

In this tutorial, we will setup a path for the case status. Below is a quick demo on how to configure the GM - Field Path component.

The configuration wizard could be used to generate the Path Stages property. Below is the stages configured for the demo.

[
   {
      "label": "New",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('New')"
         }
      }
   },
   {
      "label": "Working On",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('Escalated','Investigating')"
         }
      }
   },
   {
      "label": "On Hold",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('On Hold')"
         }
      }
   },
   {
      "label": "Closed",
      "filter": {
         "Status": {
            "operator": "in",
            "value": "('Closed')"
         }
      }
   }
]

Last updated