rather than at the top of a column
applies both to new tasks as well as tasks that are being moved from one column to the next
thanks in advance!
rather than at the top of a column
applies both to new tasks as well as tasks that are being moved from one column to the next
thanks in advance!
literally no one?? nothing??
Am I strange for asking this?
And how do I do it at the very top?
By default ⌠new tasks will appear at the bottom of the current column.
After itâs been created, you can drag it to the top-position(or anywhere else!)
Without writing a plugin, I donât think you can achieve the task to appear on top directly after creation.
For me, tasks are also being put at the top - - and Iâd typically also prefer at the bottom! Any luck, Lorand, solving this?
Turns out, for us this behavior is altered by a theme we have installed called âGreenWing.â (so for those of you looking to have tasks placed at the top, this plugin is doing that).
However, this plugin has a file called âTaskCretionModel.phpâ which can be edited to allow tasks to follow the Kanboard default (bottom of list)
CHANGE this line:
$position = empty($values['position']) ? 1 : $values['position'];
TO THIS:
$position = empty($values['position']) ? 0 : $values['position'];