|
1 | 1 | <?xml version="1.0" encoding="utf-8" ?> |
2 | 2 | <widget id="MicroflowTimer.widget.MicroflowTimer" needsEntityContext="true" xmlns="http://www.mendix.com/widget/1.0/"> |
3 | 3 | <name>MicroflowTimer</name> |
4 | | - <description>The description of this widget.</description> |
| 4 | + <description>The description of this widget</description> |
5 | 5 | <icon></icon> |
6 | 6 |
|
7 | 7 | <properties> |
8 | 8 | <property key="interval" type="integer" defaultValue="30000"> |
9 | 9 | <caption>Interval (in ms)</caption> |
10 | 10 | <category>Behavior</category> |
11 | | - <description>Defines how often the microflow is called. Note that the inteval is in milliseconds, so the default, 30000, equals 30 seconds. Note that, unless Execute Once is set to true, the microflow is invoked immediately after loading the form for the first time. </description> |
| 11 | + <description>Defines how often the microflow is called. Note that the inteval is in milliseconds, so the default, 30000, equals 30 seconds. Note that, unless Execute Once is set to true, the microflow is invoked immediately after loading the form for the first time</description> |
12 | 12 | </property> |
13 | 13 | <property key="once" type="boolean" defaultValue="false"> |
14 | 14 | <caption>Execute once</caption> |
15 | 15 | <category>Behavior</category> |
16 | | - <description>If true, the microflow will be invoked only once, and interval defines after how many seconds.</description> |
| 16 | + <description>If true, the microflow will be invoked only once, and interval defines after how many seconds</description> |
17 | 17 | </property> |
18 | 18 | <property key="startatonce" type="boolean" defaultValue="true"> |
19 | 19 | <caption>Start at once</caption> |
20 | 20 | <category>Behavior</category> |
21 | | - <description>If true (and execute once is false), the microflow will be invoked the first time if the widget has loaded. If false, the microflow will be invoked the first time after interval has passed.</description> |
| 21 | + <description>If true (and execute once is false), the microflow will be invoked the first time if the widget has loaded. If false, the microflow will be invoked the first time after interval has passed</description> |
22 | 22 | </property> |
23 | 23 | <property key="callEvent" type="enumeration" defaultValue="callMicroflow"> |
24 | 24 | <caption>Call event</caption> |
|
32 | 32 | <property key="microflow" type="microflow" required="false"> |
33 | 33 | <caption>Microflow</caption> |
34 | 34 | <category>Behavior</category> |
35 | | - <description>The microflow to be executed. If the microflow returns false, it will not be executed any longer until the context changes.</description> |
| 35 | + <description>The microflow to be executed. If the microflow returns false, it will not be executed any longer until the context changes</description> |
36 | 36 | <returnType type="Boolean"/> |
37 | 37 | </property> |
38 | 38 | <property key="nanoflow" type="nanoflow" required="false"> |
39 | 39 | <caption>Nanoflow</caption> |
40 | 40 | <category>Behavior</category> |
41 | | - <description>The nanoflow to be executed. If the nanoflow returns false, it will not be executed any longer until the context changes.</description> |
| 41 | + <description>The nanoflow to be executed. If the nanoflow returns false, it will not be executed any longer until the context changes</description> |
42 | 42 | <returnType type="Boolean"/> |
43 | 43 | </property> |
44 | 44 | <property key="firstIntervalAttr" type="attribute" required="false"> |
45 | 45 | <caption>First tick delay</caption> |
46 | 46 | <category>Context</category> |
47 | | - <description>An optional attribute on the context entity, indicating a custom first interval (in milliseconds). This could be used for continuing a timer that ticks once per minute, but should wait for 60 seconds thereafter.</description> |
| 47 | + <description>An optional attribute on the context entity, indicating a custom first interval (in milliseconds). This could be used for continuing a timer that ticks once per minute, but should wait for 60 seconds thereafter</description> |
48 | 48 | <attributeTypes> |
49 | 49 | <attributeType name="Integer"/> |
50 | 50 | </attributeTypes> |
51 | 51 | </property> |
52 | 52 | <property key="intervalAttr" type="attribute" required="false"> |
53 | 53 | <caption>Interval Attribute (in ms)</caption> |
54 | 54 | <category>Context</category> |
55 | | - <description>Defines how often the microflow is called using an attribute. If set, overrides the interval specified below.</description> |
| 55 | + <description>Defines how often the microflow is called using an attribute. If set, overrides the interval specified below</description> |
56 | 56 | <attributeTypes> |
57 | 57 | <attributeType name="Integer"/> |
58 | 58 | </attributeTypes> |
59 | 59 | </property> |
60 | 60 | <property key="timerStatusAttr" type="attribute" required="false"> |
61 | 61 | <caption>Timer Status Attribute</caption> |
62 | 62 | <category>Context</category> |
63 | | - <description>An optional attribute on the context entity, indicating the status of the timer.</description> |
| 63 | + <description>An optional attribute on the context entity, indicating the status of the timer</description> |
64 | 64 | <attributeTypes> |
65 | 65 | <attributeType name="Boolean"/> |
66 | 66 | </attributeTypes> |
|
0 commit comments