-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathBarcodeScanner.xml
More file actions
45 lines (45 loc) · 2.37 KB
/
BarcodeScanner.xml
File metadata and controls
45 lines (45 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8" ?>
<widget id="com.mendix.widget.native.barcodescanner.BarcodeScanner" supportedPlatform="Native" needsEntityContext="true" offlineCapable="true" pluginWidget="true" xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../../../node_modules/mendix/custom_widget.xsd">
<name>Barcode scanner</name>
<description>Scan barcode and QR code values.</description>
<studioProCategory>Device features</studioProCategory>
<studioCategory>Device features</studioCategory>
<properties>
<propertyGroup caption="General">
<propertyGroup caption="Data source">
<property key="barcode" type="attribute">
<caption>Barcode</caption>
<description>The attribute that will receive the scanned barcode value.</description>
<attributeTypes>
<attributeType name="String" />
</attributeTypes>
</property>
</propertyGroup>
<propertyGroup caption="Mask">
<property key="showMask" type="boolean" required="true" defaultValue="false">
<caption>Show barcode mask</caption>
<description />
</property>
<property key="showAnimatedLine" type="boolean" required="true" defaultValue="false">
<caption>Show animated line</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Flash">
<property key="showFlashToggle" type="boolean" required="true" defaultValue="false">
<caption>Show flash toggle</caption>
<description>Allow users to toggle the camera flash while scanning.</description>
</property>
</propertyGroup>
<propertyGroup caption="Events">
<property key="onDetect" type="action" required="false">
<caption>On detect</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Common">
<systemProperty key="Name" />
</propertyGroup>
</propertyGroup>
</properties>
</widget>