Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hello,
Congratulations for your product.
I would create Kanban for activity and actions, but unfortunately, activities or actions do not show on the column. It works well on ticketing and requierements.
I read the the User guide and the forum but I didn't see the solution.
Thanks a lot for your answer.
Hello,
thank you for the return indeed there is an error, I have already replied on another post and giving the correction, I'll let you see that: link to correction
Hi,
Same behaviour, same problem, same version, but solution provided did'nt work for me.
Here are the lines modified in /var/www/html/pilot/view/kanbanView.php :
$query="SELECT $tableName.id as id,
$tableName.name as name,
$tableName.id".$typeKanbanC."Type as idtickettype,
$tableName.idStatus as idstatus,
if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
$tableName.idProject as idproject,";
Something wrong ?
Regards
SOLVED : his is the right way to correct (I did a mistake) :
$query="SELECT $tableName.id as id,
$tableName.name as name,
$tableName.id".$typeKanbanC."Type as idtickettype,
$tableName.idStatus as idstatus,
$tableName.idProject as idproject,";
if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
if(property_exists($typeKanbanC, "idPriority")) {