Our flexible Kanban board for managing tasks with drag drop


Post by daniel@qeeping.se »

When adding a new task there is a task added with name "New task" and I need to edit it to enter my task details.

Instead of this behaviour I want the task dialog to appear before task is added. Is this possible?


Post by tasnim »

Hi,

You might use this https://bryntum.com/products/taskboard/docs/api/TaskBoard/store/TaskStore#event-add event to achieve it

taskBoard.project.taskStore.on('add', (props) => {
    taskBoard.editTask(props.records[0]);
});

Is this what you are looking for?


Post Reply