@syncfusion/ej2-kanban
Version:
The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing.
28 lines (27 loc) • 708 B
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
import { DialogFieldsModel } from './dialog-fields-model';
import { KanbanDialogModel } from './kanban-dialog-model';
/**
* Holds the configuration of editor settings.
*/
export declare class DialogSettings extends ChildProperty<DialogSettings> {
/**
* Defines the dialog template
*
* @default null
* @aspType string
*/
template: string | Function;
/**
* Defines the dialog fields
*
* @default []
*/
fields: DialogFieldsModel[];
/**
* Customize the model object configuration for the edit or add Dialog of Kanban.
*
* @default null
*/
model: KanbanDialogModel;
}