@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.
44 lines (43 loc) • 1.25 kB
TypeScript
import { FormValidator } from '@syncfusion/ej2-inputs';
import { Dialog } from '@syncfusion/ej2-popups';
import { Kanban } from '../base/kanban';
import { CurrentAction } from '../base/type';
/**
* Dialog module is used to perform card actions.
*/
export declare class KanbanDialog {
private parent;
dialogObj: Dialog;
private element;
formObj: FormValidator;
private action;
private storeElement;
private cardData;
private formSubmitHandler;
private preventUpdate;
/**
* Constructor for dialog module
*
* @param {Kanban} parent Accepts the kanban instance
*/
constructor(parent: Kanban);
openDialog(action: CurrentAction, data?: Record<string, any>): void;
closeDialog(): void;
private renderDialog;
private getDialogContent;
private getDialogFields;
private getDialogButtons;
private renderComponents;
private onBeforeDialogOpen;
private onBeforeDialogClose;
private getIDType;
private applyFormValidation;
private createTooltip;
private destroyToolTip;
private dialogButtonClick;
private getFormElements;
private getColumnName;
private getValueFromElement;
private destroyComponents;
destroy(): void;
}