# Global Properties

Global Properties dideklarasikan dalam properti **dynamicColumnsGlobalProperties**, yang berisi objek yang sama dengan item pada properti [**dynamicColumns**](/saba-framework-documentation/properties-and-api/crud-options/dynamic-columns.md). Properti ini aktif ketika **dynamicColumnsFieldsAuto** bernilai **true**. Tujuannya adalah untuk mendefinisikan properti global yang akan mempengaruhi semua kolom yang dihasilkan dari respons saat permintaan data awal.

Contohnya seperti ini:

<figure><img src="/files/nBmp39h5wSg8P3UsCmKm" alt=""><figcaption><p>Response data ketika get awal (load halaman)</p></figcaption></figure>

Konfigurasi file json:

```json
{
  "pageType": "crud",
  "pageTitle": "Sales Forecast",
  "crudOpt": {
    "endpointName": "http://testestes.com",
    "dynamicColumnsFieldsAuto": true,
    "dynamicColumnsGlobalProperties": {
      "type": "currency",
      "hideCurrencySymbol": true,
      "currencyFractionDigits": 0,
      "minWidth": "150px",
      "subtotal": true
    },
    "data": {
      "dynamicColumns": [
        {
          "fieldName": "masterKegiatan_name",
          "columnName": "Project",
          "minWidth": "420px"
        }
      ]
    }
  }
}
```

Maka konfigurasi pada **dynamicColumnsGlobalProperties** akan berpengaruh ke semua kolom selain kolom "project\_name".


---

# 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://saba-framework.gitbook.io/saba-framework-documentation/examples/table/global-properties.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.
