Movilizer - trigger synchronization at the end of a move

The partner asks me if the following code is OK, because it does not start forced synchronization when you click OK. I can not identify the problem. He tested iOS and Swing.

 <question type="0" title="MUVE" key="Q(Sync)">
                       <answer action="FULLSYNC" position="1" nextQuestionKey="END" key="Q(Sync)_ans" labelFontSize="VERYLARGE" labelFontStyle="BOLD" columnSizeType="ROWS" labelAlignment="CENTER">
                              <text> ¿Seguro que quiere guardar todos los canvios del dia?</text>
                       </answer>
                       <onEnterAssignment>
                              setCustomizingProperty($customizing:'screen.footer.ok.text', 'Guardar');
                              setCustomizingProperty($customizing:'screen.footer.back.text', 'Atras');
                       </onEnterAssignment>
                </question>
+4
source share
1 answer

The code looks perfect. Two important details for achieving a given functionality:

  • action = "FullSync"
  • nextQuestionKey = "END"

both in the order you specified.

+1
source

All Articles