-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDocumentLayoutWidget.xml
More file actions
52 lines (52 loc) · 2.52 KB
/
DocumentLayoutWidget.xml
File metadata and controls
52 lines (52 loc) · 2.52 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
<?xml version="1.0" encoding="utf-8"?>
<widget id="aiden.documentlayoutwidget.DocumentLayoutWidget" pluginWidget="true"
needsEntityContext="true" offlineCapable="true"
supportedPlatform="Web"
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>Document Layout Widget</name>
<description>Document layout widget</description>
<studioProCategory>Document generation</studioProCategory>
<properties>
<propertyGroup caption="General">
<propertyGroup caption="Header">
<property key="useHeader" type="expression" defaultValue="true">
<caption>Use header</caption>
<description></description>
<returnType type="Boolean" />
</property>
<property key="headerContent" type="widgets" required="false">
<caption>Header content</caption>
<description></description>
</property>
<property key="headerHeight" type="expression" defaultValue="100px" required="true">
<caption>Header height</caption>
<description></description>
<returnType type="String" />
</property>
</propertyGroup>
<propertyGroup caption="Body">
<property key="bodyContent" type="widgets" required="true">
<caption>Body content</caption>
<description></description>
</property>
</propertyGroup>
<propertyGroup caption="Footer">
<property key="useFooter" type="expression" defaultValue="true">
<caption>Use footer</caption>
<description></description>
<returnType type="Boolean" />
</property>
<property key="footerContent" type="widgets" required="false">
<caption>Footer content</caption>
<description></description>
</property>
<property key="footerHeight" type="expression" defaultValue="100px" required="true">
<caption>Footer height</caption>
<description></description>
<returnType type="String" />
</property>
</propertyGroup>
</propertyGroup>
</properties>
</widget>