Page 1 of 1

Surpress case listing screen

Posted: September 20th, 2018, 1:28 pm
by Don
On android, I would like to open my menu app after accepting a case. I have tried:
  1. including onexit=../Menu/Menu.pff in my questionnaire pff file.
  2. Putting execpff("../Menu/Menu.pff"); in the postproc of the questionnaire.
  3. Including an onstop function that calls execpff("../Menu/Menu.pff"); This only works if I exit the questionnaire early.
These all work in windows but on android, if I complete the questionnaire and accept the case, it shows the case listing. I would then have to hit the back button to get to the menu. Is there any way that I could skip or hide the case listing on android?

Re: Surpress case listing screen

Posted: September 20th, 2018, 2:38 pm
by Gregory Martin
Take a look here: http://www.csprousers.org/help/CSPro/ru ... entry.html

You'll want to add Lock=CaseListing to your PFF.

Re: Surpress case listing screen

Posted: September 21st, 2018, 10:08 am
by Don
I wasn't aware of these options. Thank you very much. It works as expected.