> For the complete documentation index, see [llms.txt](https://tldocs.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tldocs.gitbook.io/documentation/framework/controls/dxdispocolumn.md).

# DxDispoColumn

The DxDispoColumn binds the 4 fields required to display the dispo (reservation date). The BindingPath must be set on date (dispo\_datum).  In this way, the control performs the correct sorting on the grid, depending on this field.

![](/files/-MYEcgByrPVKviJIDlM2)

![](/files/-MYEcjFok9WaHj62q6V5)

ModeBindingPath:

* if the value in DataSource is 0, the displayed field value will be YearBindingPath/WeekBindingPath&#x20;
* if the value in DataSource is 1, the displayed field value will be the DateBindingPath

```csharp
private const string DEFAULT_DATE_BINDING_PATH = "dispo_datum";

private const string DEFAULT_YEAR_BINDING_PATH = "dispo_jahr";

private const string DEFAULT_WEEK_BINDING_PATH = "dispo_kw";

private const string DEFAULT_MODE_BINDING_PATH = "dispo_typ";
```

If the fields in the DataSource have exactly the above names, only the BindingPath must be set for the control, because the fields binding will be done automatically.
