# 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.&#x20;

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.

{% embed url="<https://youtu.be/ltq_J3IAjOs>" %}
GM - Field Path
{% endembed %}

{% hint style="info" %}
The [configuration wizard](https://docs.gridmate.io/advanced-guides/grid-configuration#kanban-stages-property) could be used to generate the **Path Stages** property. Below is the stages configured for the demo.
{% endhint %}

```coffeescript
[
   {
      "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')"
         }
      }
   }
]
```
