Question

Navigate to other task within a task IOS FSM

  • 7 December 2022
  • 2 replies
  • 42 views

Userlevel 2
Badge +9

Hi all,

 

We have a functionality to navigate to a sub-task from the main-task. We created a custom screen with shows the sub-task of the main-task. And use the following code to navigate to the sub-task.
 

var taskId = getCurrentListRowControlValue('task','task_id');
setCurrentKeys("task", "task_id", taskId);
setCurrentWorkflow('Debrief');
goToScreen('DebriefOverview',false);


In Android it works just fine, however in IOS it’s struggelling to go to sub-task. It will “stay” in the main-task. However the task data is from the sub-task. It seems it’s still partly on the main task when navigating to the sub-task. This causing in breaking the client scripts.

Any thoughts?​​​​​​​


2 replies

Userlevel 6
Badge +26

Hey @drooij 

It is more likely to be an iOS product bug than wrong configurations.

I would recommend to open a support ticket,

Cheers!

Userlevel 2
Badge +9

Just discoverd that when you tilt(rotate) your phone, the scripts are then suddenly start working...

Reply