Hi, I would like to customize the dependency field of predecessor column.
When the dropdown list is opened, the items are displayed this way :
TaskName (sequenceNumber) [button]
The [button] allows to select the dependency type.
We would like to display the items this way :
sequenceNumber : TaskName [button]
We managed to do this :
{
type: 'successor',
editor: {
listItemTpl: taskModel => `${taskModel.sequenceNumber} : ${taskModel.name}`
}
}
Unfortunately, we lose the [button]. Is there any way to keep it ?