> For the complete documentation index, see [llms.txt](https://saba-framework.gitbook.io/saba-framework-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://saba-framework.gitbook.io/saba-framework-documentation/examples/dynamic-columns/column-type/boolean.md).

# Boolean

<figure><img src="https://4009479446-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FELbr94H26l2v1l9CCypT%2Fuploads%2FkG67pArdtGNfmLPHn2kB%2Fimage.png?alt=media&amp;token=1d6a80f6-5342-4405-924e-363b78d759b4" alt=""><figcaption></figcaption></figure>

"type": "boolean" akan mengubah value dari respon menjadi icon checkcox dan berpengaruh jika respon value bernilai tipe boolean  (true / false).&#x20;

```json
"dynamicColumns": [
    {
      "fieldName": "permission_name"
    },
    {
      "fieldName": "post",
      "width": "150px",
      "type": "boolean",
      "center": true
    },
    {
      "fieldName": "put",
      "width": "200px",
      "type": "boolean",
      "center": true,
      "sortable": false,
      "editable": true
    },
    {
      "fieldName": "delete",
      "type": "boolean"
    }
  ]
```
