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.

ModeBindingPath:

  • if the value in DataSource is 0, the displayed field value will be YearBindingPath/WeekBindingPath

  • if the value in DataSource is 1, the displayed field value will be the DateBindingPath

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.

Last updated