Reputation: 11
I'm using QType 23 2D barcode scan:
<question key="Q1_SCREEN_SCAN" type="23" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="51" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
With attributetype="51" that displays directly the scan screen. Would it be possible to trigger the OK after scanning? instead of displaying the UID in the screen? Thanks! Regards, Rami
Upvotes: 0
Views: 105
Reputation: 13
I found a full example for skipping the take in Capture screens at https://devtools.movilizer.com/confluence/display/DOC21/Skip+take+view+in+capture+screens.
It shows a Capture Barcode 1D screen, but it should also work with the 2D screen - just replace type="22"
with type="23"
.
So, in your case, it should look either like:
<!-- Skip only the take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="52" nextQuestionKey="Q2_EPSILON_RESULT"/>
...
Or like:
<!-- Skip both default and take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="53" nextQuestionKey="Q2_EPSILON_RESULT"/>
Upvotes: 0
Reputation: 608
possible attribute types you can use are:
so either attribute type 52 or 53 should do the trick
Upvotes: 0