-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathProgressBar.xml
More file actions
56 lines (55 loc) · 3.25 KB
/
Copy pathProgressBar.xml
File metadata and controls
56 lines (55 loc) · 3.25 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
<?xml version="1.0" encoding="utf-8" ?>
<widget id="com.mendix.widget.native.progressbar.ProgressBar" 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>Progress bar</name>
<description>Display progress in a horizontal bar.</description>
<studioProCategory>Display</studioProCategory>
<studioCategory>Display</studioCategory>
<properties>
<propertyGroup caption="General">
<propertyGroup caption="Data source">
<property key="minimumValue" type="expression" defaultValue="0">
<caption>Minimum value</caption>
<description>The lowest possible progress value. If current value is lower than this value, progress will be still minimum value</description>
<returnType type="Decimal" />
</property>
<property key="maximumValue" type="expression" defaultValue="100">
<caption>Maximum value</caption>
<description>The highest possible progress value. If current value is higher than this value, progress will be still maximum value</description>
<returnType type="Decimal" />
</property>
<property key="progressValue" type="expression" defaultValue="0">
<caption>Current value</caption>
<description>The current progress value.</description>
<returnType type="Decimal" />
</property>
<property key="showProgressCaption" type="boolean" defaultValue="true">
<caption>Show Progress Caption</caption>
<description />
</property>
<property key="showDefaultProgressCaption" type="boolean" defaultValue="true">
<caption>Show Default Caption</caption>
<description>e.g 70%</description>
</property>
<property key="progressCaption" type="textTemplate" required="false">
<caption>Custom progress caption</caption>
<description />
</property>
<property key="useDefaulMendixColor" type="boolean" defaultValue="true">
<caption>Default Color</caption>
<description>Use mendix default progress color</description>
</property>
<property key="customColor" type="string" required="false">
<caption>Filled Color Code</caption>
<description>HEX code e.g. #ff5733</description>
</property>
<property key="customUnfilledColor" type="string" required="false">
<caption>UnFilled Color Code</caption>
<description>HEX code e.g. #ff5733</description>
</property>
</propertyGroup>
<propertyGroup caption="Common">
<systemProperty key="Name" />
</propertyGroup>
</propertyGroup>
</properties>
</widget>