Hi,
if you configure a taskstore in the config with tree: true, drag and drop of tasks doesn't work properly.
To reproduce:
- Open https://bryntum.com/products/taskboard/examples/column-toolbars/
- Apply follwing config for the project
project : {
loadUrl : 'data/data.json',
autoLoad : true,
taskStore: {
tree: true,
},
onBeforeLoadApply({ response }){
response.assignments = undefined;
response.resources = undefined;
response.tasks.rows = [
{ name: "test1", status: "considering" },
{ name: "test2", status: "considering" },
]
}
},
- drag "test" to the first column
- --> task snaps back to the second column.
Regards, Roman