# 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](/advanced-guides/grid-configuration.md#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')"
         }
      }
   }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.gridmate.io/product-tour/field-path.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
