-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathGallery.xml
More file actions
110 lines (110 loc) · 5.69 KB
/
Copy pathGallery.xml
File metadata and controls
110 lines (110 loc) · 5.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="utf-8" ?>
<widget id="com.mendix.widget.native.gallery.Gallery" pluginWidget="true" supportedPlatform="Native" offlineCapable="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>Gallery</name>
<description />
<studioProCategory>Data containers</studioProCategory>
<studioCategory>Data Containers</studioCategory>
<helpUrl>https://docs.mendix.com/appstore/modules/native-mobile-resources</helpUrl>
<properties>
<propertyGroup caption="General">
<propertyGroup caption="General">
<property key="datasource" type="datasource" isList="true">
<caption>Data source</caption>
<description />
</property>
<property key="content" type="widgets" dataSource="datasource" required="false">
<caption>Content placeholder</caption>
<description />
</property>
<property key="scrollDirection" type="enumeration" defaultValue="vertical">
<caption>Scroll direction</caption>
<description />
<enumerationValues>
<enumerationValue key="vertical">Vertical</enumerationValue>
<enumerationValue key="horizontal">Horizontal</enumerationValue>
</enumerationValues>
</property>
<property key="showScrollIndicator" type="boolean" defaultValue="true">
<caption>Show scroll indicator</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Columns">
<property key="tabletColumns" type="integer" defaultValue="1">
<caption>Tablet columns</caption>
<description />
</property>
<property key="phoneColumns" type="integer" defaultValue="1">
<caption>Phone columns</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Items">
<property key="pageSize" type="integer" defaultValue="20">
<caption>Page size</caption>
<description />
</property>
<property key="pagination" type="enumeration" defaultValue="virtualScrolling">
<caption>Pagination</caption>
<description />
<enumerationValues>
<enumerationValue key="virtualScrolling">Virtual scrolling</enumerationValue>
<enumerationValue key="buttons">Load more button</enumerationValue>
</enumerationValues>
</property>
<property key="loadMoreButtonCaption" type="textTemplate" required="false">
<caption>Load more caption</caption>
<description />
<translations>
<translation lang="en_US">Load more</translation>
<translation lang="nl_NL">Laad meer</translation>
</translations>
</property>
<property key="emptyPlaceholder" type="widgets" required="false">
<caption>Empty placeholder</caption>
<description />
</property>
</propertyGroup>
<propertyGroup caption="Events">
<property key="onClick" type="action" required="false" dataSource="datasource">
<caption>On click action</caption>
<description />
</property>
<property key="pullDown" type="action" required="false">
<caption>Pull down</caption>
<description />
</property>
</propertyGroup>
</propertyGroup>
<propertyGroup caption="Filtering">
<propertyGroup caption="Filtering">
<property key="filterList" type="object" isList="true" required="false">
<caption>Filters</caption>
<description />
<properties>
<propertyGroup caption="General">
<property key="filter" type="attribute" dataSource="../datasource">
<caption>Filter attribute</caption>
<description />
<attributeTypes>
<attributeType name="String" />
<attributeType name="AutoNumber" />
<attributeType name="Boolean" />
<attributeType name="DateTime" />
<attributeType name="Decimal" />
<attributeType name="Enum" />
<attributeType name="Integer" />
<attributeType name="Long" />
</attributeTypes>
</property>
</propertyGroup>
</properties>
</property>
<property key="filtersPlaceholder" type="widgets" required="false">
<caption>Filters placeholder</caption>
<description />
</property>
</propertyGroup>
</propertyGroup>
</properties>
</widget>