I created a task update script on my RS TaskGroup server. It must change the value of the task each time the task is updated. Unfortunately, this does not update the task.
function Handle_Before_UpdateTask (UpdatedTask, OrigTask)
{
UpdatedTask.progress = 0;
rstg.updateTask (UpdatedTask);
return true;
}
source
share