@sap/ux-specification 1.124.0 → 1.124.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +68 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +90 -90
- package/dist/index-min.js.map +3 -3
- package/dist/schemas/v2/ApplicationV2.json +1 -5
- package/dist/schemas/v4/ApplicationV4.json +1 -5
- package/dist/schemas/v4/BuildingBlocksConfig.json +1894 -372
- package/dist/specification/package.json +9 -9
- package/dist/specification/scripts/macros/cmd.d.ts.map +1 -1
- package/dist/specification/scripts/macros/cmd.js +3 -0
- package/dist/specification/scripts/macros/cmd.js.map +1 -1
- package/dist/specification/scripts/macros/i18n.d.ts +8 -0
- package/dist/specification/scripts/macros/i18n.d.ts.map +1 -0
- package/dist/specification/scripts/macros/i18n.js +84 -0
- package/dist/specification/scripts/macros/i18n.js.map +1 -0
- package/dist/specification/src/api.d.ts +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +1 -1
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/sync/common/appProvider.js +5 -3
- package/dist/specification/src/sync/common/appProvider.js.map +1 -1
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +5 -3
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- package/dist/specification/src/sync/common/utils.d.ts +19 -1
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +140 -103
- package/dist/specification/src/sync/common/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/application.js +1 -1
- package/dist/specification/src/sync/v2/application.js.map +1 -1
- package/dist/specification/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/export.js +41 -31
- package/dist/specification/src/sync/v2/export/export.js.map +1 -1
- package/dist/specification/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/app/appProvider.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/export.js +19 -4
- package/dist/specification/src/sync/v4/export/export.js.map +1 -1
- package/dist/specification/src/sync/v4/import/app/appProvider.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/app/appProvider.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js +2 -2
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/types/src/apiTypes.d.ts +3 -2
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/page.d.ts +2 -2
- package/dist/types/src/common/page.d.ts.map +1 -1
- package/package.json +9 -9
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
"namespaces": [
|
|
5
5
|
"sap.fe.macros",
|
|
6
6
|
"sap.fe.macros.chart",
|
|
7
|
+
"sap.fe.macros.controls",
|
|
8
|
+
"sap.fe.macros.field",
|
|
7
9
|
"sap.fe.macros.filterBar",
|
|
10
|
+
"sap.fe.macros.microchart",
|
|
11
|
+
"sap.fe.macros.richtexteditor",
|
|
8
12
|
"sap.fe.macros.share",
|
|
9
|
-
"sap.fe.macros.table"
|
|
13
|
+
"sap.fe.macros.table",
|
|
14
|
+
"sap.fe.macros.controls.section"
|
|
10
15
|
]
|
|
11
16
|
},
|
|
12
17
|
"properties": {
|
|
@@ -41,6 +46,84 @@
|
|
|
41
46
|
"type": "Control"
|
|
42
47
|
}
|
|
43
48
|
},
|
|
49
|
+
"sap.fe.macros.KPITag": {
|
|
50
|
+
"description": "Building block used to create a KPI tag.",
|
|
51
|
+
"isViewNode": true,
|
|
52
|
+
"type": "object",
|
|
53
|
+
"properties": {
|
|
54
|
+
"number": {
|
|
55
|
+
"type": "any",
|
|
56
|
+
"description": "The Number to be displayed.",
|
|
57
|
+
"artifactType": "XMLProperty",
|
|
58
|
+
"metadata": {
|
|
59
|
+
"type": "Property"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"showIcon": {
|
|
63
|
+
"type": "boolean",
|
|
64
|
+
"description": "Set it to `true` if the KPI should display its status icon.",
|
|
65
|
+
"artifactType": "XMLProperty",
|
|
66
|
+
"metadata": {
|
|
67
|
+
"type": "Property"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"status": {
|
|
71
|
+
"type": "any",
|
|
72
|
+
"description": "The Status to be displayed.",
|
|
73
|
+
"artifactType": "XMLProperty",
|
|
74
|
+
"metadata": {
|
|
75
|
+
"type": "Property"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"text": {
|
|
79
|
+
"type": "any",
|
|
80
|
+
"description": "The Text to be displayed.",
|
|
81
|
+
"artifactType": "XMLProperty",
|
|
82
|
+
"metadata": {
|
|
83
|
+
"type": "Property"
|
|
84
|
+
},
|
|
85
|
+
"i18nClassification": "TXT: Text of the KPITag"
|
|
86
|
+
},
|
|
87
|
+
"tooltip": {
|
|
88
|
+
"type": "any",
|
|
89
|
+
"description": "The Tooltip to be displayed.",
|
|
90
|
+
"artifactType": "XMLProperty",
|
|
91
|
+
"metadata": {
|
|
92
|
+
"type": "Property"
|
|
93
|
+
},
|
|
94
|
+
"i18nClassification": "CAP: Tooltip of the KPITag"
|
|
95
|
+
},
|
|
96
|
+
"unit": {
|
|
97
|
+
"type": "any",
|
|
98
|
+
"description": "The Unit of Measure of the number to be displayed.",
|
|
99
|
+
"artifactType": "XMLProperty",
|
|
100
|
+
"metadata": {
|
|
101
|
+
"type": "Property"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"id": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"description": "Unique id of control",
|
|
107
|
+
"artifactType": "XMLProperty",
|
|
108
|
+
"metadata": {
|
|
109
|
+
"type": "Property"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"press": {
|
|
113
|
+
"type": "string",
|
|
114
|
+
"description": "An event is triggered when the KPI is pressed.",
|
|
115
|
+
"artifactType": "XMLProperty",
|
|
116
|
+
"metadata": {
|
|
117
|
+
"type": "Event"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"additionalProperties": false,
|
|
122
|
+
"metadata": {
|
|
123
|
+
"path": [],
|
|
124
|
+
"type": "Control"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
44
127
|
"sap.fe.macros.MacroAPI": {
|
|
45
128
|
"description": "Base API control for building blocks.",
|
|
46
129
|
"isViewNode": true,
|
|
@@ -77,6 +160,58 @@
|
|
|
77
160
|
"type": "Control"
|
|
78
161
|
}
|
|
79
162
|
},
|
|
163
|
+
"sap.fe.macros.MultiValueField": {
|
|
164
|
+
"description": "Building block for creating a MultiValueField based on the metadata provided by OData V4.\n\nThe MultiValueField can be used to display either a DataField or Property directly. It has to point to a collection property.\n\nUsage example:\n\n<macro:MultiValueField\n id=\"SomeUniqueIdentifier\"\n contextPath=\"{entitySet>}\"\n metaPath=\"{dataField>}\"\n />\n",
|
|
165
|
+
"isViewNode": true,
|
|
166
|
+
"type": "object",
|
|
167
|
+
"properties": {
|
|
168
|
+
"contextPath": {
|
|
169
|
+
"type": "string",
|
|
170
|
+
"description": "The context path provided for the MultiValueField",
|
|
171
|
+
"artifactType": "XMLProperty",
|
|
172
|
+
"metadata": {
|
|
173
|
+
"type": "Property"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"items": {
|
|
177
|
+
"type": "any",
|
|
178
|
+
"description": "Property added to be able to add data / items to the multi value field via a different model",
|
|
179
|
+
"artifactType": "XMLProperty",
|
|
180
|
+
"metadata": {
|
|
181
|
+
"type": "Property"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"metaPath": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"description": "Defines the relative Metadata path to the MultiValueField.\nThe metaPath should point to a Property or DataField.",
|
|
187
|
+
"artifactType": "XMLProperty",
|
|
188
|
+
"metadata": {
|
|
189
|
+
"type": "Property"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"readOnly": {
|
|
193
|
+
"type": "boolean",
|
|
194
|
+
"description": "The readOnly flag",
|
|
195
|
+
"artifactType": "XMLProperty",
|
|
196
|
+
"metadata": {
|
|
197
|
+
"type": "Property"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"id": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"description": "Unique id of control",
|
|
203
|
+
"artifactType": "XMLProperty",
|
|
204
|
+
"metadata": {
|
|
205
|
+
"type": "Property"
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"additionalProperties": false,
|
|
210
|
+
"metadata": {
|
|
211
|
+
"path": [],
|
|
212
|
+
"type": "Control"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
80
215
|
"sap.fe.macros.RichTextEditor": {
|
|
81
216
|
"description": "Building block that exposes the RichTextEditor UI5 control.\nIt's used to enter formatted text, and uses the third-party component called TinyMCE.\n",
|
|
82
217
|
"isViewNode": true,
|
|
@@ -125,7 +260,7 @@
|
|
|
125
260
|
"buttonGroups": {
|
|
126
261
|
"type": "object",
|
|
127
262
|
"additionalProperties": {
|
|
128
|
-
"$ref": "#/definitions/sap.fe.macros.richtexteditor.
|
|
263
|
+
"$ref": "#/definitions/sap.fe.macros.richtexteditor.ButtonGroup"
|
|
129
264
|
},
|
|
130
265
|
"isViewNode": true,
|
|
131
266
|
"metadata": {
|
|
@@ -136,7 +271,7 @@
|
|
|
136
271
|
"plugins": {
|
|
137
272
|
"type": "object",
|
|
138
273
|
"additionalProperties": {
|
|
139
|
-
"$ref": "#/definitions/sap.fe.macros.richtexteditor.
|
|
274
|
+
"$ref": "#/definitions/sap.fe.macros.richtexteditor.Plugin"
|
|
140
275
|
},
|
|
141
276
|
"isViewNode": true,
|
|
142
277
|
"metadata": {
|
|
@@ -214,7 +349,8 @@
|
|
|
214
349
|
"artifactType": "XMLProperty",
|
|
215
350
|
"metadata": {
|
|
216
351
|
"type": "Property"
|
|
217
|
-
}
|
|
352
|
+
},
|
|
353
|
+
"i18nClassification": "BUT: Text of the action button"
|
|
218
354
|
},
|
|
219
355
|
"id": {
|
|
220
356
|
"type": "string",
|
|
@@ -270,7 +406,8 @@
|
|
|
270
406
|
"artifactType": "XMLProperty",
|
|
271
407
|
"metadata": {
|
|
272
408
|
"type": "Property"
|
|
273
|
-
}
|
|
409
|
+
},
|
|
410
|
+
"i18nClassification": "BUT: Text of the action group button"
|
|
274
411
|
},
|
|
275
412
|
"id": {
|
|
276
413
|
"type": "string",
|
|
@@ -298,8 +435,8 @@
|
|
|
298
435
|
"type": "Control"
|
|
299
436
|
}
|
|
300
437
|
},
|
|
301
|
-
"sap.fe.macros.Chart": {
|
|
302
|
-
"description": "Building block used to create a chart based on the metadata provided by OData V4.\n\nUsually, a contextPath and metaPath is expected.\nUsage example:\n\
|
|
438
|
+
"sap.fe.macros.chart.Chart": {
|
|
439
|
+
"description": "Building block used to create a chart based on the metadata provided by OData V4.\n\nUsually, a contextPath and metaPath is expected.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/chart/Chart\"], function(Chart) {\n\t ...\n\t new Chart(\"myChart\", {metaPath:\"MyChart\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the Chart that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
303
440
|
"isViewNode": true,
|
|
304
441
|
"type": "object",
|
|
305
442
|
"properties": {
|
|
@@ -344,14 +481,7 @@
|
|
|
344
481
|
}
|
|
345
482
|
},
|
|
346
483
|
"personalization": {
|
|
347
|
-
"
|
|
348
|
-
{
|
|
349
|
-
"type": "boolean"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"type": "string"
|
|
353
|
-
}
|
|
354
|
-
],
|
|
484
|
+
"type": "string",
|
|
355
485
|
"description": "Controls which options should be enabled for the chart personalization dialog.\nIf it is set to `true`, all possible options for this kind of chart are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Type\n - Item\n - Filter\n",
|
|
356
486
|
"artifactType": "XMLProperty",
|
|
357
487
|
"metadata": {
|
|
@@ -414,71 +544,81 @@
|
|
|
414
544
|
"type": "Control"
|
|
415
545
|
}
|
|
416
546
|
},
|
|
417
|
-
"sap.fe.macros.
|
|
418
|
-
"description": "Building block
|
|
547
|
+
"sap.fe.macros.Chart": {
|
|
548
|
+
"description": "Building block used to create a chart based on the metadata provided by OData V4.\n\nUsually, a contextPath and metaPath is expected.\nUsage example:\n\n<macros:Chart id=\"Mychart\" contextPath=\"/RootEntity\" metaPath=\"@com.sap.vocabularies.UI.v1.Chart\" />\n\n",
|
|
419
549
|
"isViewNode": true,
|
|
420
550
|
"type": "object",
|
|
421
551
|
"properties": {
|
|
422
|
-
"
|
|
552
|
+
"contextPath": {
|
|
423
553
|
"type": "string",
|
|
424
|
-
"description": "
|
|
554
|
+
"description": "Metadata path to the entitySet or navigationProperty",
|
|
425
555
|
"artifactType": "XMLProperty",
|
|
426
556
|
"metadata": {
|
|
427
557
|
"type": "Property"
|
|
428
558
|
}
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
"additionalProperties": false,
|
|
432
|
-
"metadata": {
|
|
433
|
-
"path": [],
|
|
434
|
-
"type": "Control"
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
"sap.fe.macros.Field": {
|
|
438
|
-
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macro:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\n",
|
|
439
|
-
"isViewNode": true,
|
|
440
|
-
"type": "object",
|
|
441
|
-
"properties": {
|
|
442
|
-
"contextPath": {
|
|
559
|
+
},
|
|
560
|
+
"filterBar": {
|
|
443
561
|
"type": "string",
|
|
444
|
-
"description": "
|
|
562
|
+
"description": "Id of the FilterBar building block associated with the chart.",
|
|
445
563
|
"artifactType": "XMLProperty",
|
|
446
564
|
"metadata": {
|
|
447
565
|
"type": "Property"
|
|
448
566
|
}
|
|
449
567
|
},
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"description": "
|
|
568
|
+
"header": {
|
|
569
|
+
"type": "string",
|
|
570
|
+
"description": "Specifies the header text that is shown in the chart",
|
|
571
|
+
"artifactType": "XMLProperty",
|
|
572
|
+
"metadata": {
|
|
573
|
+
"type": "Property"
|
|
574
|
+
},
|
|
575
|
+
"i18nClassification": "HED: Header of the chart"
|
|
576
|
+
},
|
|
577
|
+
"headerVisible": {
|
|
578
|
+
"type": "boolean",
|
|
579
|
+
"description": "Controls if the header text should be shown or not",
|
|
453
580
|
"artifactType": "XMLProperty",
|
|
454
|
-
"isViewNode": true,
|
|
455
581
|
"metadata": {
|
|
456
582
|
"type": "Property"
|
|
457
583
|
}
|
|
458
584
|
},
|
|
459
585
|
"metaPath": {
|
|
460
586
|
"type": "string",
|
|
461
|
-
"description": "
|
|
587
|
+
"description": "Metadata path to the presentation context (UI.Chart with or without a qualifier)",
|
|
462
588
|
"artifactType": "XMLProperty",
|
|
463
589
|
"metadata": {
|
|
464
590
|
"type": "Property"
|
|
465
591
|
}
|
|
466
592
|
},
|
|
467
|
-
"
|
|
468
|
-
"type": "
|
|
469
|
-
"description": "
|
|
593
|
+
"personalization": {
|
|
594
|
+
"type": "string",
|
|
595
|
+
"description": "Controls which options should be enabled for the chart personalization dialog.\nIf it is set to `true`, all possible options for this kind of chart are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Type\n - Item\n - Filter\n",
|
|
470
596
|
"artifactType": "XMLProperty",
|
|
471
597
|
"metadata": {
|
|
472
598
|
"type": "Property"
|
|
473
599
|
}
|
|
474
600
|
},
|
|
475
|
-
"
|
|
601
|
+
"selectionMode": {
|
|
476
602
|
"type": "string",
|
|
477
|
-
"description": "
|
|
603
|
+
"description": "Defines the selection mode to be used by the chart.\nAllowed values are `None`, `Single` or `Multiple`\n",
|
|
478
604
|
"artifactType": "XMLProperty",
|
|
479
605
|
"metadata": {
|
|
480
606
|
"type": "Property"
|
|
481
|
-
}
|
|
607
|
+
},
|
|
608
|
+
"enum": [
|
|
609
|
+
"None",
|
|
610
|
+
"Single",
|
|
611
|
+
"Multiple"
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
"variantManagement": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"description": "Controls the kind of variant management that should be enabled for the chart.\nAllowed value is `Control`.\nIf set with value `Control`, a variant management control is seen within the chart and the chart is linked to this.\nIf not set with any value, variant management control is not available for this chart.\n",
|
|
617
|
+
"artifactType": "XMLProperty",
|
|
618
|
+
"metadata": {
|
|
619
|
+
"type": "Property"
|
|
620
|
+
},
|
|
621
|
+
"const": "Control"
|
|
482
622
|
},
|
|
483
623
|
"id": {
|
|
484
624
|
"type": "string",
|
|
@@ -488,17 +628,20 @@
|
|
|
488
628
|
"type": "Property"
|
|
489
629
|
}
|
|
490
630
|
},
|
|
491
|
-
"
|
|
492
|
-
"type": "
|
|
493
|
-
"
|
|
494
|
-
|
|
631
|
+
"actions": {
|
|
632
|
+
"type": "object",
|
|
633
|
+
"additionalProperties": {
|
|
634
|
+
"$ref": "#/definitions/sap.fe.macros.chart.Action"
|
|
635
|
+
},
|
|
636
|
+
"isViewNode": true,
|
|
495
637
|
"metadata": {
|
|
496
|
-
"
|
|
638
|
+
"path": [],
|
|
639
|
+
"type": "Aggregation"
|
|
497
640
|
}
|
|
498
641
|
},
|
|
499
|
-
"
|
|
642
|
+
"selectionChange": {
|
|
500
643
|
"type": "string",
|
|
501
|
-
"description": "An event
|
|
644
|
+
"description": "An event triggered when chart selections are changed. The event contains information about the data selected/deselected and the Boolean flag that indicates whether data is selected or deselected.",
|
|
502
645
|
"artifactType": "XMLProperty",
|
|
503
646
|
"metadata": {
|
|
504
647
|
"type": "Event"
|
|
@@ -511,97 +654,147 @@
|
|
|
511
654
|
"type": "Control"
|
|
512
655
|
}
|
|
513
656
|
},
|
|
514
|
-
"sap.fe.macros.
|
|
515
|
-
"description": "
|
|
657
|
+
"sap.fe.macros.controls.BuildingBlockObjectProperty": {
|
|
658
|
+
"description": "Base class for building block complex object properties that can be serialized to XML.",
|
|
516
659
|
"isViewNode": true,
|
|
517
660
|
"type": "object",
|
|
518
661
|
"properties": {
|
|
519
|
-
"
|
|
662
|
+
"id": {
|
|
520
663
|
"type": "string",
|
|
521
|
-
"description": "
|
|
664
|
+
"description": "Unique id of control",
|
|
522
665
|
"artifactType": "XMLProperty",
|
|
523
666
|
"metadata": {
|
|
524
667
|
"type": "Property"
|
|
525
668
|
}
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"additionalProperties": false,
|
|
672
|
+
"metadata": {
|
|
673
|
+
"path": [],
|
|
674
|
+
"type": "Control"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"sap.fe.macros.controls.BuildingBlockWithTemplating": {
|
|
678
|
+
"description": "Using this class you can define a building block that will manage and render a templating based building block.\nOn change of the main properties you will be able to recreate the content.",
|
|
679
|
+
"isViewNode": true,
|
|
680
|
+
"type": "object",
|
|
681
|
+
"properties": {
|
|
682
|
+
"id": {
|
|
683
|
+
"type": "string",
|
|
684
|
+
"description": "Unique id of control",
|
|
530
685
|
"artifactType": "XMLProperty",
|
|
531
686
|
"metadata": {
|
|
532
687
|
"type": "Property"
|
|
533
688
|
}
|
|
534
|
-
}
|
|
535
|
-
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"additionalProperties": false,
|
|
692
|
+
"metadata": {
|
|
693
|
+
"path": [],
|
|
694
|
+
"type": "Control"
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"sap.fe.macros.FlexibleColumnLayoutActions": {
|
|
698
|
+
"description": "Building block for adding overflow toolbar buttons to integrate into the flexible column layout support from Fiori elements.\nUsage example:\n\n<macros:FlexibleColumnLayoutActions />\n\n",
|
|
699
|
+
"isViewNode": true,
|
|
700
|
+
"type": "object",
|
|
701
|
+
"properties": {
|
|
702
|
+
"id": {
|
|
536
703
|
"type": "string",
|
|
537
|
-
"description": "
|
|
704
|
+
"description": "Unique id of control",
|
|
538
705
|
"artifactType": "XMLProperty",
|
|
539
706
|
"metadata": {
|
|
540
707
|
"type": "Property"
|
|
541
708
|
}
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"additionalProperties": false,
|
|
712
|
+
"metadata": {
|
|
713
|
+
"path": [],
|
|
714
|
+
"type": "Control"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"sap.fe.macros.field.Field": {
|
|
718
|
+
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/field/Field\"], function(Field) {\n\t ...\n\t new Field(\"MyField\", {metaPath:\"MyProperty\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the Field that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
719
|
+
"isViewNode": true,
|
|
720
|
+
"type": "object",
|
|
721
|
+
"properties": {
|
|
722
|
+
"contextPath": {
|
|
723
|
+
"type": "string",
|
|
724
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
546
725
|
"artifactType": "XMLProperty",
|
|
547
726
|
"metadata": {
|
|
548
727
|
"type": "Property"
|
|
549
728
|
}
|
|
550
729
|
},
|
|
551
|
-
"
|
|
552
|
-
"type": "
|
|
553
|
-
"description": "
|
|
730
|
+
"description": {
|
|
731
|
+
"type": "string",
|
|
732
|
+
"description": "This is used to optionally provide an external description that comes from a different model than the oData model.\nThis should be used in conjunction with the value property.",
|
|
554
733
|
"artifactType": "XMLProperty",
|
|
555
734
|
"metadata": {
|
|
556
735
|
"type": "Property"
|
|
557
736
|
}
|
|
558
737
|
},
|
|
559
|
-
"
|
|
738
|
+
"formatOptions": {
|
|
739
|
+
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
740
|
+
"description": "formatOptions",
|
|
741
|
+
"artifactType": "XMLProperty",
|
|
742
|
+
"isViewNode": true,
|
|
743
|
+
"metadata": {
|
|
744
|
+
"type": "Property"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"metaPath": {
|
|
748
|
+
"type": "string",
|
|
749
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
750
|
+
"artifactType": "XMLProperty",
|
|
751
|
+
"metadata": {
|
|
752
|
+
"type": "Property"
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"readOnly": {
|
|
560
756
|
"type": "boolean",
|
|
561
|
-
"description": "
|
|
757
|
+
"description": "An expression that allows you to control the read-only state of the field.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
562
758
|
"artifactType": "XMLProperty",
|
|
563
759
|
"metadata": {
|
|
564
760
|
"type": "Property"
|
|
565
761
|
}
|
|
566
762
|
},
|
|
567
|
-
"
|
|
763
|
+
"semanticObject": {
|
|
568
764
|
"type": "string",
|
|
569
|
-
"description": "
|
|
765
|
+
"description": "Option to add semantic objects for a field.\nThis parameter overwrites the semantic objects defined through annotations.\nValid options are either a single semantic object, a stringified array of semantic objects,\na formatter or a single binding expression returning either a single semantic object or an array of semantic objects.",
|
|
570
766
|
"artifactType": "XMLProperty",
|
|
571
767
|
"metadata": {
|
|
572
768
|
"type": "Property"
|
|
573
769
|
}
|
|
574
770
|
},
|
|
575
|
-
"
|
|
576
|
-
"type": "
|
|
577
|
-
"
|
|
578
|
-
|
|
579
|
-
},
|
|
580
|
-
"isViewNode": true,
|
|
771
|
+
"value": {
|
|
772
|
+
"type": "string",
|
|
773
|
+
"description": "This is used to optionally provide an external value that comes from a different model than the oData model.\nIt is designed to work with a field with value help, and without support for complex value help (currency / unit).",
|
|
774
|
+
"artifactType": "XMLProperty",
|
|
581
775
|
"metadata": {
|
|
582
|
-
"
|
|
583
|
-
"type": "Aggregation"
|
|
776
|
+
"type": "Property"
|
|
584
777
|
}
|
|
585
778
|
},
|
|
586
|
-
"
|
|
779
|
+
"id": {
|
|
587
780
|
"type": "string",
|
|
588
|
-
"description": "
|
|
781
|
+
"description": "Unique id of control",
|
|
589
782
|
"artifactType": "XMLProperty",
|
|
590
783
|
"metadata": {
|
|
591
|
-
"type": "
|
|
784
|
+
"type": "Property"
|
|
592
785
|
}
|
|
593
786
|
},
|
|
594
|
-
"
|
|
787
|
+
"change": {
|
|
595
788
|
"type": "string",
|
|
596
|
-
"description": "
|
|
789
|
+
"description": "An event containing details is triggered when the value of the field is changed.",
|
|
597
790
|
"artifactType": "XMLProperty",
|
|
598
791
|
"metadata": {
|
|
599
792
|
"type": "Event"
|
|
600
793
|
}
|
|
601
794
|
},
|
|
602
|
-
"
|
|
795
|
+
"liveChange": {
|
|
603
796
|
"type": "string",
|
|
604
|
-
"description": "
|
|
797
|
+
"description": "An event containing details is triggered when the value of the field is live changed.",
|
|
605
798
|
"artifactType": "XMLProperty",
|
|
606
799
|
"metadata": {
|
|
607
800
|
"type": "Event"
|
|
@@ -614,107 +807,90 @@
|
|
|
614
807
|
"type": "Control"
|
|
615
808
|
}
|
|
616
809
|
},
|
|
617
|
-
"sap.fe.macros.
|
|
618
|
-
"description": "
|
|
810
|
+
"sap.fe.macros.Field": {
|
|
811
|
+
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macros:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\n",
|
|
619
812
|
"isViewNode": true,
|
|
620
813
|
"type": "object",
|
|
621
814
|
"properties": {
|
|
622
|
-
"
|
|
815
|
+
"contextPath": {
|
|
623
816
|
"type": "string",
|
|
624
|
-
"description": "
|
|
817
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
625
818
|
"artifactType": "XMLProperty",
|
|
626
819
|
"metadata": {
|
|
627
820
|
"type": "Property"
|
|
628
821
|
}
|
|
629
822
|
},
|
|
630
|
-
"
|
|
823
|
+
"description": {
|
|
631
824
|
"type": "string",
|
|
632
|
-
"description": "
|
|
825
|
+
"description": "This is used to optionally provide an external description that comes from a different model than the oData model.\nThis should be used in conjunction with the value property.",
|
|
633
826
|
"artifactType": "XMLProperty",
|
|
634
827
|
"metadata": {
|
|
635
828
|
"type": "Property"
|
|
636
829
|
}
|
|
637
830
|
},
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"description": "
|
|
831
|
+
"formatOptions": {
|
|
832
|
+
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
833
|
+
"description": "formatOptions",
|
|
641
834
|
"artifactType": "XMLProperty",
|
|
835
|
+
"isViewNode": true,
|
|
642
836
|
"metadata": {
|
|
643
837
|
"type": "Property"
|
|
644
838
|
}
|
|
645
839
|
},
|
|
646
|
-
"
|
|
840
|
+
"metaPath": {
|
|
647
841
|
"type": "string",
|
|
648
|
-
"description": "Defines
|
|
842
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
649
843
|
"artifactType": "XMLProperty",
|
|
650
844
|
"metadata": {
|
|
651
845
|
"type": "Property"
|
|
652
|
-
}
|
|
653
|
-
"enum": [
|
|
654
|
-
"After",
|
|
655
|
-
"Before"
|
|
656
|
-
]
|
|
846
|
+
}
|
|
657
847
|
},
|
|
658
|
-
"
|
|
848
|
+
"readOnly": {
|
|
659
849
|
"type": "boolean",
|
|
660
|
-
"description": "
|
|
850
|
+
"description": "An expression that allows you to control the read-only state of the field.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
661
851
|
"artifactType": "XMLProperty",
|
|
662
852
|
"metadata": {
|
|
663
853
|
"type": "Property"
|
|
664
854
|
}
|
|
665
855
|
},
|
|
666
|
-
"
|
|
856
|
+
"semanticObject": {
|
|
667
857
|
"type": "string",
|
|
668
|
-
"description": "
|
|
858
|
+
"description": "Option to add semantic objects for a field.\nThis parameter overwrites the semantic objects defined through annotations.\nValid options are either a single semantic object, a stringified array of semantic objects,\na formatter or a single binding expression returning either a single semantic object or an array of semantic objects.",
|
|
669
859
|
"artifactType": "XMLProperty",
|
|
670
860
|
"metadata": {
|
|
671
861
|
"type": "Property"
|
|
672
862
|
}
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
"path": [],
|
|
678
|
-
"type": "Control"
|
|
679
|
-
}
|
|
680
|
-
},
|
|
681
|
-
"sap.fe.macros.Form": {
|
|
682
|
-
"description": "Building block for creating a Form based on the metadata provided by OData V4.\n\nIt is designed to work based on a FieldGroup annotation but can also work if you provide a ReferenceFacet or a CollectionFacet\nUsage example:\n\n<macro:Form id=\"MyForm\" metaPath=\"@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation\" />\n\n",
|
|
683
|
-
"isViewNode": true,
|
|
684
|
-
"type": "object",
|
|
685
|
-
"properties": {
|
|
686
|
-
"contextPath": {
|
|
687
|
-
"$ref": "#/definitions/sap.ui.model.Context",
|
|
688
|
-
"description": "contextPath",
|
|
863
|
+
},
|
|
864
|
+
"value": {
|
|
865
|
+
"type": "string",
|
|
866
|
+
"description": "This is used to optionally provide an external value that comes from a different model than the oData model.\nIt is designed to work with a field with value help, and without support for complex value help (currency / unit).",
|
|
689
867
|
"artifactType": "XMLProperty",
|
|
690
|
-
"isViewNode": true,
|
|
691
868
|
"metadata": {
|
|
692
869
|
"type": "Property"
|
|
693
870
|
}
|
|
694
871
|
},
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"description": "
|
|
872
|
+
"id": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"description": "Unique id of control",
|
|
698
875
|
"artifactType": "XMLProperty",
|
|
699
|
-
"isViewNode": true,
|
|
700
876
|
"metadata": {
|
|
701
877
|
"type": "Property"
|
|
702
878
|
}
|
|
703
879
|
},
|
|
704
|
-
"
|
|
880
|
+
"change": {
|
|
705
881
|
"type": "string",
|
|
706
|
-
"description": "
|
|
882
|
+
"description": "An event containing details is triggered when the value of the field is changed.",
|
|
707
883
|
"artifactType": "XMLProperty",
|
|
708
884
|
"metadata": {
|
|
709
|
-
"type": "
|
|
885
|
+
"type": "Event"
|
|
710
886
|
}
|
|
711
887
|
},
|
|
712
|
-
"
|
|
888
|
+
"liveChange": {
|
|
713
889
|
"type": "string",
|
|
714
|
-
"description": "
|
|
890
|
+
"description": "An event containing details is triggered when the value of the field is live changed.",
|
|
715
891
|
"artifactType": "XMLProperty",
|
|
716
892
|
"metadata": {
|
|
717
|
-
"type": "
|
|
893
|
+
"type": "Event"
|
|
718
894
|
}
|
|
719
895
|
}
|
|
720
896
|
},
|
|
@@ -724,40 +900,54 @@
|
|
|
724
900
|
"type": "Control"
|
|
725
901
|
}
|
|
726
902
|
},
|
|
727
|
-
"sap.fe.macros.
|
|
728
|
-
"description": "
|
|
903
|
+
"sap.fe.macros.filterBar.FilterBar": {
|
|
904
|
+
"description": "Usage example:\n\nsap.ui.require([\"sap/fe/macros/filterBar/FilterBar\"], function(FilterBar) {\n\t ...\n\t new FilterBar(\"MyFilterBar\", {metaPath:\"@com.sap.vocabularies.UI.v1.SelectionFields\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the FilterBar that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
729
905
|
"isViewNode": true,
|
|
730
906
|
"type": "object",
|
|
731
907
|
"properties": {
|
|
732
908
|
"contextPath": {
|
|
733
|
-
"
|
|
734
|
-
"description": "
|
|
909
|
+
"type": "string",
|
|
910
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
735
911
|
"artifactType": "XMLProperty",
|
|
736
|
-
"isViewNode": true,
|
|
737
912
|
"metadata": {
|
|
738
913
|
"type": "Property"
|
|
739
914
|
}
|
|
740
915
|
},
|
|
741
|
-
"
|
|
742
|
-
"type": "
|
|
743
|
-
"description": "
|
|
916
|
+
"liveMode": {
|
|
917
|
+
"type": "boolean",
|
|
918
|
+
"description": "If true, the search is triggered automatically when a filter value is changed.",
|
|
744
919
|
"artifactType": "XMLProperty",
|
|
745
920
|
"metadata": {
|
|
746
921
|
"type": "Property"
|
|
747
922
|
}
|
|
748
923
|
},
|
|
749
924
|
"metaPath": {
|
|
750
|
-
"
|
|
751
|
-
"description": "
|
|
925
|
+
"type": "string",
|
|
926
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
927
|
+
"artifactType": "XMLProperty",
|
|
928
|
+
"metadata": {
|
|
929
|
+
"type": "Property"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
"showClearButton": {
|
|
933
|
+
"type": "boolean",
|
|
934
|
+
"description": "Handles the visibility of the 'Clear' button on the FilterBar.",
|
|
935
|
+
"artifactType": "XMLProperty",
|
|
936
|
+
"metadata": {
|
|
937
|
+
"type": "Property"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"showMessages": {
|
|
941
|
+
"type": "boolean",
|
|
942
|
+
"description": "Displays possible errors during the search in a message box",
|
|
752
943
|
"artifactType": "XMLProperty",
|
|
753
|
-
"isViewNode": true,
|
|
754
944
|
"metadata": {
|
|
755
945
|
"type": "Property"
|
|
756
946
|
}
|
|
757
947
|
},
|
|
758
948
|
"visible": {
|
|
759
949
|
"type": "boolean",
|
|
760
|
-
"description": "
|
|
950
|
+
"description": "Parameter which sets the visibility of the FilterBar building block",
|
|
761
951
|
"artifactType": "XMLProperty",
|
|
762
952
|
"metadata": {
|
|
763
953
|
"type": "Property"
|
|
@@ -771,16 +961,40 @@
|
|
|
771
961
|
"type": "Property"
|
|
772
962
|
}
|
|
773
963
|
},
|
|
774
|
-
"
|
|
964
|
+
"filterFields": {
|
|
775
965
|
"type": "object",
|
|
776
966
|
"additionalProperties": {
|
|
777
|
-
"$ref": "#/definitions/sap.
|
|
967
|
+
"$ref": "#/definitions/sap.fe.macros.filterBar.FilterField"
|
|
778
968
|
},
|
|
779
969
|
"isViewNode": true,
|
|
780
970
|
"metadata": {
|
|
781
971
|
"path": [],
|
|
782
972
|
"type": "Aggregation"
|
|
783
973
|
}
|
|
974
|
+
},
|
|
975
|
+
"afterClear": {
|
|
976
|
+
"type": "string",
|
|
977
|
+
"description": "This event is fired when the 'Clear' button is pressed. This is only possible when the 'Clear' button is enabled.",
|
|
978
|
+
"artifactType": "XMLProperty",
|
|
979
|
+
"metadata": {
|
|
980
|
+
"type": "Event"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"filterChanged": {
|
|
984
|
+
"type": "string",
|
|
985
|
+
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that will be used as filters.",
|
|
986
|
+
"artifactType": "XMLProperty",
|
|
987
|
+
"metadata": {
|
|
988
|
+
"type": "Event"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
"search": {
|
|
992
|
+
"type": "string",
|
|
993
|
+
"description": "This event is fired when the 'Go' button is pressed or after a condition change.",
|
|
994
|
+
"artifactType": "XMLProperty",
|
|
995
|
+
"metadata": {
|
|
996
|
+
"type": "Event"
|
|
997
|
+
}
|
|
784
998
|
}
|
|
785
999
|
},
|
|
786
1000
|
"additionalProperties": false,
|
|
@@ -789,77 +1003,54 @@
|
|
|
789
1003
|
"type": "Control"
|
|
790
1004
|
}
|
|
791
1005
|
},
|
|
792
|
-
"sap.fe.macros.
|
|
793
|
-
"description": "Building block
|
|
1006
|
+
"sap.fe.macros.FilterBar": {
|
|
1007
|
+
"description": "Building block for creating a FilterBar based on the metadata provided by OData V4.\n\nUsually, a SelectionFields annotation is expected.\nUsage example:\n\n<macros:FilterBar id=\"MyFilterBar\" metaPath=\"@com.sap.vocabularies.UI.v1.SelectionFields\" />\n\n",
|
|
794
1008
|
"isViewNode": true,
|
|
795
1009
|
"type": "object",
|
|
796
1010
|
"properties": {
|
|
797
|
-
"
|
|
798
|
-
"anyOf": [
|
|
799
|
-
{
|
|
800
|
-
"type": "number"
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
"type": "string",
|
|
804
|
-
"pattern": "^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$"
|
|
805
|
-
}
|
|
806
|
-
],
|
|
807
|
-
"description": "The Number to be displayed.",
|
|
808
|
-
"artifactType": "XMLProperty",
|
|
809
|
-
"metadata": {
|
|
810
|
-
"type": "Property"
|
|
811
|
-
}
|
|
812
|
-
},
|
|
813
|
-
"press": {
|
|
1011
|
+
"contextPath": {
|
|
814
1012
|
"type": "string",
|
|
815
|
-
"description": "
|
|
1013
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
816
1014
|
"artifactType": "XMLProperty",
|
|
817
1015
|
"metadata": {
|
|
818
1016
|
"type": "Property"
|
|
819
1017
|
}
|
|
820
1018
|
},
|
|
821
|
-
"
|
|
1019
|
+
"liveMode": {
|
|
822
1020
|
"type": "boolean",
|
|
823
|
-
"description": "
|
|
1021
|
+
"description": "If true, the search is triggered automatically when a filter value is changed.",
|
|
824
1022
|
"artifactType": "XMLProperty",
|
|
825
1023
|
"metadata": {
|
|
826
1024
|
"type": "Property"
|
|
827
1025
|
}
|
|
828
1026
|
},
|
|
829
|
-
"
|
|
1027
|
+
"metaPath": {
|
|
830
1028
|
"type": "string",
|
|
831
|
-
"description": "
|
|
1029
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
832
1030
|
"artifactType": "XMLProperty",
|
|
833
1031
|
"metadata": {
|
|
834
1032
|
"type": "Property"
|
|
835
|
-
}
|
|
836
|
-
"enum": [
|
|
837
|
-
"Success",
|
|
838
|
-
"Error",
|
|
839
|
-
"Warning",
|
|
840
|
-
"None",
|
|
841
|
-
"Information"
|
|
842
|
-
]
|
|
1033
|
+
}
|
|
843
1034
|
},
|
|
844
|
-
"
|
|
845
|
-
"type": "
|
|
846
|
-
"description": "
|
|
1035
|
+
"showClearButton": {
|
|
1036
|
+
"type": "boolean",
|
|
1037
|
+
"description": "Handles the visibility of the 'Clear' button on the FilterBar.",
|
|
847
1038
|
"artifactType": "XMLProperty",
|
|
848
1039
|
"metadata": {
|
|
849
1040
|
"type": "Property"
|
|
850
1041
|
}
|
|
851
1042
|
},
|
|
852
|
-
"
|
|
853
|
-
"type": "
|
|
854
|
-
"description": "
|
|
1043
|
+
"showMessages": {
|
|
1044
|
+
"type": "boolean",
|
|
1045
|
+
"description": "Displays possible errors during the search in a message box",
|
|
855
1046
|
"artifactType": "XMLProperty",
|
|
856
1047
|
"metadata": {
|
|
857
1048
|
"type": "Property"
|
|
858
1049
|
}
|
|
859
1050
|
},
|
|
860
|
-
"
|
|
861
|
-
"type": "
|
|
862
|
-
"description": "
|
|
1051
|
+
"visible": {
|
|
1052
|
+
"type": "boolean",
|
|
1053
|
+
"description": "Parameter which sets the visibility of the FilterBar building block",
|
|
863
1054
|
"artifactType": "XMLProperty",
|
|
864
1055
|
"metadata": {
|
|
865
1056
|
"type": "Property"
|
|
@@ -872,25 +1063,40 @@
|
|
|
872
1063
|
"metadata": {
|
|
873
1064
|
"type": "Property"
|
|
874
1065
|
}
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
"id": {
|
|
1066
|
+
},
|
|
1067
|
+
"filterFields": {
|
|
1068
|
+
"type": "object",
|
|
1069
|
+
"additionalProperties": {
|
|
1070
|
+
"$ref": "#/definitions/sap.fe.macros.filterBar.FilterField"
|
|
1071
|
+
},
|
|
1072
|
+
"isViewNode": true,
|
|
1073
|
+
"metadata": {
|
|
1074
|
+
"path": [],
|
|
1075
|
+
"type": "Aggregation"
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
"afterClear": {
|
|
889
1079
|
"type": "string",
|
|
890
|
-
"description": "
|
|
1080
|
+
"description": "This event is fired when the 'Clear' button is pressed. This is only possible when the 'Clear' button is enabled.",
|
|
891
1081
|
"artifactType": "XMLProperty",
|
|
892
1082
|
"metadata": {
|
|
893
|
-
"type": "
|
|
1083
|
+
"type": "Event"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"filterChanged": {
|
|
1087
|
+
"type": "string",
|
|
1088
|
+
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that will be used as filters.",
|
|
1089
|
+
"artifactType": "XMLProperty",
|
|
1090
|
+
"metadata": {
|
|
1091
|
+
"type": "Event"
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
"search": {
|
|
1095
|
+
"type": "string",
|
|
1096
|
+
"description": "This event is fired when the 'Go' button is pressed or after a condition change.",
|
|
1097
|
+
"artifactType": "XMLProperty",
|
|
1098
|
+
"metadata": {
|
|
1099
|
+
"type": "Event"
|
|
894
1100
|
}
|
|
895
1101
|
}
|
|
896
1102
|
},
|
|
@@ -900,32 +1106,50 @@
|
|
|
900
1106
|
"type": "Control"
|
|
901
1107
|
}
|
|
902
1108
|
},
|
|
903
|
-
"sap.fe.macros.
|
|
904
|
-
"description": "
|
|
1109
|
+
"sap.fe.macros.filterBar.FilterField": {
|
|
1110
|
+
"description": "Definition of a custom filter to be used inside the FilterBar.\nThe template for the FilterField has to be provided as the default aggregation\n",
|
|
905
1111
|
"isViewNode": true,
|
|
906
1112
|
"type": "object",
|
|
907
1113
|
"properties": {
|
|
908
|
-
"
|
|
909
|
-
"
|
|
910
|
-
"description": "
|
|
1114
|
+
"anchor": {
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"description": "Reference to the key of another filter already displayed in the table to properly place this one",
|
|
911
1117
|
"artifactType": "XMLProperty",
|
|
912
|
-
"isViewNode": true,
|
|
913
1118
|
"metadata": {
|
|
914
1119
|
"type": "Property"
|
|
915
1120
|
}
|
|
916
1121
|
},
|
|
917
|
-
"
|
|
918
|
-
"
|
|
919
|
-
"description": "
|
|
1122
|
+
"key": {
|
|
1123
|
+
"type": "string",
|
|
1124
|
+
"description": "The property name of the FilterField",
|
|
920
1125
|
"artifactType": "XMLProperty",
|
|
921
|
-
"isViewNode": true,
|
|
922
1126
|
"metadata": {
|
|
923
1127
|
"type": "Property"
|
|
924
1128
|
}
|
|
925
1129
|
},
|
|
926
|
-
"
|
|
1130
|
+
"label": {
|
|
1131
|
+
"type": "string",
|
|
1132
|
+
"description": "The text that will be displayed for this FilterField",
|
|
1133
|
+
"artifactType": "XMLProperty",
|
|
1134
|
+
"metadata": {
|
|
1135
|
+
"type": "Property"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"placement": {
|
|
1139
|
+
"type": "string",
|
|
1140
|
+
"description": "Defines where this filter should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
1141
|
+
"artifactType": "XMLProperty",
|
|
1142
|
+
"metadata": {
|
|
1143
|
+
"type": "Property"
|
|
1144
|
+
},
|
|
1145
|
+
"enum": [
|
|
1146
|
+
"After",
|
|
1147
|
+
"Before"
|
|
1148
|
+
]
|
|
1149
|
+
},
|
|
1150
|
+
"showMessages": {
|
|
927
1151
|
"type": "boolean",
|
|
928
|
-
"description": "
|
|
1152
|
+
"description": "If set, possible errors that occur during the search will be displayed in a message box.",
|
|
929
1153
|
"artifactType": "XMLProperty",
|
|
930
1154
|
"metadata": {
|
|
931
1155
|
"type": "Property"
|
|
@@ -946,19 +1170,38 @@
|
|
|
946
1170
|
"type": "Control"
|
|
947
1171
|
}
|
|
948
1172
|
},
|
|
949
|
-
"sap.fe.macros.
|
|
950
|
-
"description": "Building block
|
|
1173
|
+
"sap.fe.macros.Form": {
|
|
1174
|
+
"description": "Building block for creating a Form based on the metadata provided by OData V4.\n\nIt is designed to work based on a FieldGroup annotation but can also work if you provide a ReferenceFacet or a CollectionFacet\nUsage example:\n\n<macros:Form id=\"MyForm\" metaPath=\"@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation\" />\n\n",
|
|
951
1175
|
"isViewNode": true,
|
|
952
1176
|
"type": "object",
|
|
953
1177
|
"properties": {
|
|
954
|
-
"
|
|
955
|
-
"
|
|
956
|
-
"description": "
|
|
1178
|
+
"contextPath": {
|
|
1179
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1180
|
+
"description": "contextPath",
|
|
1181
|
+
"artifactType": "XMLProperty",
|
|
1182
|
+
"isViewNode": true,
|
|
1183
|
+
"metadata": {
|
|
1184
|
+
"type": "Property"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"metaPath": {
|
|
1188
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1189
|
+
"description": "metaPath",
|
|
957
1190
|
"artifactType": "XMLProperty",
|
|
1191
|
+
"isViewNode": true,
|
|
958
1192
|
"metadata": {
|
|
959
1193
|
"type": "Property"
|
|
960
1194
|
}
|
|
961
1195
|
},
|
|
1196
|
+
"title": {
|
|
1197
|
+
"type": "string",
|
|
1198
|
+
"description": "The title of the form control.",
|
|
1199
|
+
"artifactType": "XMLProperty",
|
|
1200
|
+
"metadata": {
|
|
1201
|
+
"type": "Property"
|
|
1202
|
+
},
|
|
1203
|
+
"i18nClassification": "HED: Title of the form"
|
|
1204
|
+
},
|
|
962
1205
|
"id": {
|
|
963
1206
|
"type": "string",
|
|
964
1207
|
"description": "Unique id of control",
|
|
@@ -974,64 +1217,96 @@
|
|
|
974
1217
|
"type": "Control"
|
|
975
1218
|
}
|
|
976
1219
|
},
|
|
977
|
-
"sap.fe.macros.
|
|
978
|
-
"description": "
|
|
1220
|
+
"sap.fe.macros.FormElement": {
|
|
1221
|
+
"description": "Building block used to create a form element based on the metadata provided by OData V4.",
|
|
979
1222
|
"isViewNode": true,
|
|
980
1223
|
"type": "object",
|
|
981
1224
|
"properties": {
|
|
982
|
-
"
|
|
983
|
-
"
|
|
984
|
-
"description": "
|
|
1225
|
+
"contextPath": {
|
|
1226
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1227
|
+
"description": "contextPath",
|
|
985
1228
|
"artifactType": "XMLProperty",
|
|
1229
|
+
"isViewNode": true,
|
|
986
1230
|
"metadata": {
|
|
987
1231
|
"type": "Property"
|
|
988
1232
|
}
|
|
989
1233
|
},
|
|
990
|
-
"
|
|
1234
|
+
"label": {
|
|
1235
|
+
"type": "string",
|
|
1236
|
+
"description": "Label shown for the field. If not set, the label from the annotations will be shown.",
|
|
1237
|
+
"artifactType": "XMLProperty",
|
|
1238
|
+
"metadata": {
|
|
1239
|
+
"type": "Property"
|
|
1240
|
+
},
|
|
1241
|
+
"i18nClassification": "FLD: Label of the form element"
|
|
1242
|
+
},
|
|
1243
|
+
"metaPath": {
|
|
991
1244
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
992
|
-
"description": "
|
|
1245
|
+
"description": "metaPath",
|
|
993
1246
|
"artifactType": "XMLProperty",
|
|
994
1247
|
"isViewNode": true,
|
|
995
1248
|
"metadata": {
|
|
996
1249
|
"type": "Property"
|
|
997
1250
|
}
|
|
998
1251
|
},
|
|
999
|
-
"
|
|
1252
|
+
"visible": {
|
|
1000
1253
|
"type": "boolean",
|
|
1001
|
-
"description": "
|
|
1254
|
+
"description": "If set to false, the FormElement is not rendered.",
|
|
1002
1255
|
"artifactType": "XMLProperty",
|
|
1003
1256
|
"metadata": {
|
|
1004
1257
|
"type": "Property"
|
|
1005
1258
|
}
|
|
1006
1259
|
},
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"description": "
|
|
1260
|
+
"id": {
|
|
1261
|
+
"type": "string",
|
|
1262
|
+
"description": "Unique id of control",
|
|
1010
1263
|
"artifactType": "XMLProperty",
|
|
1011
|
-
"isViewNode": true,
|
|
1012
1264
|
"metadata": {
|
|
1013
1265
|
"type": "Property"
|
|
1014
1266
|
}
|
|
1015
1267
|
},
|
|
1016
|
-
"
|
|
1017
|
-
"type": "
|
|
1018
|
-
"
|
|
1268
|
+
"fields": {
|
|
1269
|
+
"type": "object",
|
|
1270
|
+
"additionalProperties": {
|
|
1271
|
+
"$ref": "#/definitions/sap.ui.core.Control"
|
|
1272
|
+
},
|
|
1273
|
+
"isViewNode": true,
|
|
1274
|
+
"metadata": {
|
|
1275
|
+
"path": [],
|
|
1276
|
+
"type": "Aggregation"
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"additionalProperties": false,
|
|
1281
|
+
"metadata": {
|
|
1282
|
+
"path": [],
|
|
1283
|
+
"type": "Control"
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
"sap.fe.macros.MicroChart": {
|
|
1287
|
+
"description": "Building block used to create a MicroChart based on the metadata provided by OData V4.",
|
|
1288
|
+
"isViewNode": true,
|
|
1289
|
+
"type": "object",
|
|
1290
|
+
"properties": {
|
|
1291
|
+
"hideOnNoData": {
|
|
1292
|
+
"type": "string",
|
|
1293
|
+
"description": "Show blank space in case there is no data in the chart",
|
|
1019
1294
|
"artifactType": "XMLProperty",
|
|
1020
1295
|
"metadata": {
|
|
1021
1296
|
"type": "Property"
|
|
1022
1297
|
}
|
|
1023
1298
|
},
|
|
1024
|
-
"
|
|
1025
|
-
"type": "
|
|
1026
|
-
"description": "
|
|
1299
|
+
"showOnlyChart": {
|
|
1300
|
+
"type": "string",
|
|
1301
|
+
"description": "To control the rendering of Title, Subtitle and Currency Labels. When the size is xs then we do\nnot see the inner labels of the MicroChart as well.",
|
|
1027
1302
|
"artifactType": "XMLProperty",
|
|
1028
1303
|
"metadata": {
|
|
1029
1304
|
"type": "Property"
|
|
1030
1305
|
}
|
|
1031
1306
|
},
|
|
1032
|
-
"
|
|
1033
|
-
"type": "
|
|
1034
|
-
"description": "
|
|
1307
|
+
"size": {
|
|
1308
|
+
"type": "string",
|
|
1309
|
+
"description": "Size of the MicroChart",
|
|
1035
1310
|
"artifactType": "XMLProperty",
|
|
1036
1311
|
"metadata": {
|
|
1037
1312
|
"type": "Property"
|
|
@@ -1052,22 +1327,30 @@
|
|
|
1052
1327
|
"type": "Control"
|
|
1053
1328
|
}
|
|
1054
1329
|
},
|
|
1055
|
-
"sap.fe.macros.
|
|
1056
|
-
"description": "Building block used to create the
|
|
1330
|
+
"sap.fe.macros.microchart.MicroChart": {
|
|
1331
|
+
"description": "Building block used to create a MicroChart based on the metadata provided by OData V4.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/microchart/MicroChart\"], function(MicroChart) {\n\t ...\n\t new MicroChart(\"microChartID\", {metaPath:\"MyProperty\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the MicroChart that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
1057
1332
|
"isViewNode": true,
|
|
1058
1333
|
"type": "object",
|
|
1059
1334
|
"properties": {
|
|
1060
|
-
"
|
|
1061
|
-
"type": "
|
|
1062
|
-
"description": "
|
|
1335
|
+
"hideOnNoData": {
|
|
1336
|
+
"type": "string",
|
|
1337
|
+
"description": "Show blank space in case there is no data in the chart",
|
|
1063
1338
|
"artifactType": "XMLProperty",
|
|
1064
1339
|
"metadata": {
|
|
1065
1340
|
"type": "Property"
|
|
1066
1341
|
}
|
|
1067
1342
|
},
|
|
1068
|
-
"
|
|
1069
|
-
"type": "
|
|
1070
|
-
"description": "
|
|
1343
|
+
"showOnlyChart": {
|
|
1344
|
+
"type": "string",
|
|
1345
|
+
"description": "To control the rendering of Title, Subtitle and Currency Labels. When the size is xs then we do\nnot see the inner labels of the MicroChart as well.",
|
|
1346
|
+
"artifactType": "XMLProperty",
|
|
1347
|
+
"metadata": {
|
|
1348
|
+
"type": "Property"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"size": {
|
|
1352
|
+
"type": "string",
|
|
1353
|
+
"description": "Size of the MicroChart",
|
|
1071
1354
|
"artifactType": "XMLProperty",
|
|
1072
1355
|
"metadata": {
|
|
1073
1356
|
"type": "Property"
|
|
@@ -1088,66 +1371,74 @@
|
|
|
1088
1371
|
"type": "Control"
|
|
1089
1372
|
}
|
|
1090
1373
|
},
|
|
1091
|
-
"sap.fe.macros.
|
|
1092
|
-
"description": "
|
|
1374
|
+
"sap.fe.macros.Paginator": {
|
|
1375
|
+
"description": "Building block used to create a paginator control.\nUsage example:\n\n<macros:Paginator />\n\n",
|
|
1093
1376
|
"isViewNode": true,
|
|
1094
1377
|
"type": "object",
|
|
1095
1378
|
"properties": {
|
|
1096
|
-
"
|
|
1379
|
+
"ariaTitle": {
|
|
1097
1380
|
"type": "string",
|
|
1098
|
-
"description": "
|
|
1381
|
+
"description": "Title of the object that is readout by screen readers when the next/previous item is loaded via keyboard focus on the paginator button.",
|
|
1099
1382
|
"artifactType": "XMLProperty",
|
|
1100
1383
|
"metadata": {
|
|
1101
1384
|
"type": "Property"
|
|
1102
1385
|
}
|
|
1103
1386
|
},
|
|
1104
|
-
"
|
|
1105
|
-
"type": "
|
|
1106
|
-
"description": "
|
|
1387
|
+
"id": {
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"description": "Unique id of control",
|
|
1107
1390
|
"artifactType": "XMLProperty",
|
|
1108
1391
|
"metadata": {
|
|
1109
1392
|
"type": "Property"
|
|
1110
1393
|
}
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"additionalProperties": false,
|
|
1397
|
+
"metadata": {
|
|
1398
|
+
"path": [],
|
|
1399
|
+
"type": "Control"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"sap.fe.macros.richtexteditor.ButtonGroup": {
|
|
1403
|
+
"description": "Button configurations for the RichTextEditor.",
|
|
1404
|
+
"isViewNode": true,
|
|
1405
|
+
"type": "object",
|
|
1406
|
+
"properties": {
|
|
1407
|
+
"buttons": {
|
|
1113
1408
|
"type": "string",
|
|
1114
|
-
"description": "
|
|
1409
|
+
"description": "The buttons to be displayed in the group.",
|
|
1115
1410
|
"artifactType": "XMLProperty",
|
|
1116
1411
|
"metadata": {
|
|
1117
1412
|
"type": "Property"
|
|
1118
1413
|
}
|
|
1119
1414
|
},
|
|
1120
|
-
"
|
|
1415
|
+
"customToolbarPriority": {
|
|
1121
1416
|
"type": "string",
|
|
1122
|
-
"description": "
|
|
1417
|
+
"description": "The priority of the group in the custom toolbar.",
|
|
1123
1418
|
"artifactType": "XMLProperty",
|
|
1124
1419
|
"metadata": {
|
|
1125
1420
|
"type": "Property"
|
|
1126
|
-
}
|
|
1127
|
-
"enum": [
|
|
1128
|
-
"After",
|
|
1129
|
-
"Before"
|
|
1130
|
-
]
|
|
1421
|
+
}
|
|
1131
1422
|
},
|
|
1132
|
-
"
|
|
1423
|
+
"name": {
|
|
1133
1424
|
"type": "string",
|
|
1134
|
-
"description": "
|
|
1425
|
+
"description": "The name of the group.",
|
|
1135
1426
|
"artifactType": "XMLProperty",
|
|
1136
1427
|
"metadata": {
|
|
1137
1428
|
"type": "Property"
|
|
1138
1429
|
}
|
|
1139
1430
|
},
|
|
1140
|
-
"
|
|
1141
|
-
"type": "
|
|
1142
|
-
"description": "
|
|
1431
|
+
"priority": {
|
|
1432
|
+
"type": "string",
|
|
1433
|
+
"description": "The priority of the group.",
|
|
1143
1434
|
"artifactType": "XMLProperty",
|
|
1144
1435
|
"metadata": {
|
|
1145
1436
|
"type": "Property"
|
|
1146
1437
|
}
|
|
1147
1438
|
},
|
|
1148
|
-
"
|
|
1439
|
+
"visible": {
|
|
1149
1440
|
"type": "string",
|
|
1150
|
-
"description": "
|
|
1441
|
+
"description": "Whether the group is visible.",
|
|
1151
1442
|
"artifactType": "XMLProperty",
|
|
1152
1443
|
"metadata": {
|
|
1153
1444
|
"type": "Property"
|
|
@@ -1168,47 +1459,271 @@
|
|
|
1168
1459
|
"type": "Control"
|
|
1169
1460
|
}
|
|
1170
1461
|
},
|
|
1171
|
-
"sap.fe.macros.
|
|
1172
|
-
"description": "
|
|
1462
|
+
"sap.fe.macros.richtexteditor.Plugin": {
|
|
1463
|
+
"description": "Represents a TinyMCE plugin.\nEach object has to contain a property \"name\" which then contains the plugin name/ID.",
|
|
1173
1464
|
"isViewNode": true,
|
|
1174
1465
|
"type": "object",
|
|
1175
1466
|
"properties": {
|
|
1176
|
-
"
|
|
1467
|
+
"name": {
|
|
1177
1468
|
"type": "string",
|
|
1178
|
-
"description": "
|
|
1469
|
+
"description": "The plugin name.",
|
|
1179
1470
|
"artifactType": "XMLProperty",
|
|
1180
1471
|
"metadata": {
|
|
1181
1472
|
"type": "Property"
|
|
1182
1473
|
}
|
|
1183
1474
|
},
|
|
1184
|
-
"
|
|
1475
|
+
"id": {
|
|
1185
1476
|
"type": "string",
|
|
1186
|
-
"description": "Unique
|
|
1477
|
+
"description": "Unique id of control",
|
|
1187
1478
|
"artifactType": "XMLProperty",
|
|
1188
1479
|
"metadata": {
|
|
1189
1480
|
"type": "Property"
|
|
1190
1481
|
}
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1482
|
+
}
|
|
1483
|
+
},
|
|
1484
|
+
"additionalProperties": false,
|
|
1485
|
+
"metadata": {
|
|
1486
|
+
"path": [],
|
|
1487
|
+
"type": "Control"
|
|
1488
|
+
}
|
|
1489
|
+
},
|
|
1490
|
+
"sap.fe.macros.RichTextEditorWithMetadata": {
|
|
1491
|
+
"description": "Metadata-driven building block that exposes the RichTextEditor UI5 control.\nIt's used to enter formatted text and uses the third-party component called TinyMCE.\n",
|
|
1492
|
+
"isViewNode": true,
|
|
1493
|
+
"type": "object",
|
|
1494
|
+
"properties": {
|
|
1495
|
+
"buttonGroups": {
|
|
1496
|
+
"type": "array",
|
|
1497
|
+
"description": "With the 'buttonGroups' attribute, you can customize the buttons that are displayed on the toolbar of the editor.",
|
|
1498
|
+
"artifactType": "XMLProperty",
|
|
1499
|
+
"metadata": {
|
|
1500
|
+
"type": "Property"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"contextPath": {
|
|
1504
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1505
|
+
"description": "contextPath",
|
|
1506
|
+
"artifactType": "XMLProperty",
|
|
1507
|
+
"isViewNode": true,
|
|
1508
|
+
"metadata": {
|
|
1509
|
+
"type": "Property"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
"excludeDefaultPlugins": {
|
|
1513
|
+
"type": "boolean",
|
|
1514
|
+
"description": "With the 'excludeDefaultPlugins' you can ask to remove the plugins that will be added by default\nThe default plugins are \"emoticons\" \"directionality\" \"image\" \"table\" \"link\" \"powerpaste\".",
|
|
1515
|
+
"artifactType": "XMLProperty",
|
|
1516
|
+
"metadata": {
|
|
1517
|
+
"type": "Property"
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
"metaPath": {
|
|
1521
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1522
|
+
"description": "metaPath",
|
|
1523
|
+
"artifactType": "XMLProperty",
|
|
1524
|
+
"isViewNode": true,
|
|
1525
|
+
"metadata": {
|
|
1526
|
+
"type": "Property"
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
"plugins": {
|
|
1530
|
+
"type": "array",
|
|
1531
|
+
"description": "With the 'plugins' attribute you can customize the plugins that will be loaded by the editor.",
|
|
1532
|
+
"artifactType": "XMLProperty",
|
|
1533
|
+
"metadata": {
|
|
1534
|
+
"type": "Property"
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
"readOnly": {
|
|
1538
|
+
"type": "boolean",
|
|
1539
|
+
"description": "Use the readOnly attribute to override the edit flow of the page.\nBy setting 'readOnly' to true, a FormattedText is displayed instead of the editor.",
|
|
1540
|
+
"artifactType": "XMLProperty",
|
|
1541
|
+
"metadata": {
|
|
1542
|
+
"type": "Property"
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
"required": {
|
|
1546
|
+
"type": "boolean",
|
|
1547
|
+
"description": "Use the 'required' attribute, to make sure that the editor is filled with some text.",
|
|
1548
|
+
"artifactType": "XMLProperty",
|
|
1549
|
+
"metadata": {
|
|
1550
|
+
"type": "Property"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"id": {
|
|
1554
|
+
"type": "string",
|
|
1555
|
+
"description": "Unique id of control",
|
|
1556
|
+
"artifactType": "XMLProperty",
|
|
1557
|
+
"metadata": {
|
|
1558
|
+
"type": "Property"
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1562
|
+
"additionalProperties": false,
|
|
1563
|
+
"metadata": {
|
|
1564
|
+
"path": [],
|
|
1565
|
+
"type": "Control"
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
"sap.fe.macros.Share": {
|
|
1569
|
+
"description": "Building block used to create the ‘Share’ functionality.\n\nPlease note that the 'Share in SAP Jam' option is only available on platforms that are integrated with SAP Jam.\n\nIf you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then the 'Save as Tile' option is not visible.\nUsage example:\n\n<macros:Share\n\tid=\"someID\"\nvisible=\"true\"\n/>\n\n",
|
|
1570
|
+
"isViewNode": true,
|
|
1571
|
+
"type": "object",
|
|
1572
|
+
"properties": {
|
|
1573
|
+
"shareOptions": {
|
|
1574
|
+
"type": "object",
|
|
1575
|
+
"description": "Supported Share options sap.fe.macros.share.ShareOptions.",
|
|
1576
|
+
"artifactType": "XMLProperty",
|
|
1577
|
+
"metadata": {
|
|
1578
|
+
"type": "Property"
|
|
1579
|
+
}
|
|
1580
|
+
},
|
|
1581
|
+
"visible": {
|
|
1582
|
+
"type": "boolean",
|
|
1583
|
+
"description": "Whether the share control should be visible on the screen.",
|
|
1584
|
+
"artifactType": "XMLProperty",
|
|
1585
|
+
"metadata": {
|
|
1586
|
+
"type": "Property"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"id": {
|
|
1590
|
+
"type": "string",
|
|
1591
|
+
"description": "Unique id of control",
|
|
1592
|
+
"artifactType": "XMLProperty",
|
|
1593
|
+
"metadata": {
|
|
1594
|
+
"type": "Property"
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
"additionalProperties": false,
|
|
1599
|
+
"metadata": {
|
|
1600
|
+
"path": [],
|
|
1601
|
+
"type": "Control"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"sap.fe.macros.table.Action": {
|
|
1605
|
+
"description": "Definition of a custom action to be used inside the table toolbar",
|
|
1606
|
+
"isViewNode": true,
|
|
1607
|
+
"type": "object",
|
|
1608
|
+
"properties": {
|
|
1609
|
+
"anchor": {
|
|
1610
|
+
"type": "string",
|
|
1611
|
+
"description": "Reference to the key of another action already displayed in the toolbar to properly place this one",
|
|
1612
|
+
"artifactType": "XMLProperty",
|
|
1613
|
+
"metadata": {
|
|
1614
|
+
"type": "Property"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"enabled": {
|
|
1618
|
+
"type": "boolean",
|
|
1619
|
+
"description": "Enables or disables the action",
|
|
1620
|
+
"artifactType": "XMLProperty",
|
|
1621
|
+
"metadata": {
|
|
1622
|
+
"type": "Property"
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"key": {
|
|
1626
|
+
"type": "string",
|
|
1627
|
+
"description": "Unique identifier of the action",
|
|
1628
|
+
"artifactType": "XMLProperty",
|
|
1629
|
+
"metadata": {
|
|
1630
|
+
"type": "Property"
|
|
1631
|
+
}
|
|
1632
|
+
},
|
|
1633
|
+
"placement": {
|
|
1634
|
+
"type": "string",
|
|
1635
|
+
"description": "Defines where this action should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
1636
|
+
"artifactType": "XMLProperty",
|
|
1637
|
+
"metadata": {
|
|
1638
|
+
"type": "Property"
|
|
1639
|
+
},
|
|
1640
|
+
"enum": [
|
|
1641
|
+
"After",
|
|
1642
|
+
"Before"
|
|
1202
1643
|
]
|
|
1203
1644
|
},
|
|
1645
|
+
"press": {
|
|
1646
|
+
"type": "string",
|
|
1647
|
+
"description": "Event handler to be called when the user chooses the action",
|
|
1648
|
+
"artifactType": "XMLProperty",
|
|
1649
|
+
"metadata": {
|
|
1650
|
+
"type": "Property"
|
|
1651
|
+
}
|
|
1652
|
+
},
|
|
1653
|
+
"requiresSelection": {
|
|
1654
|
+
"type": "boolean",
|
|
1655
|
+
"description": "Defines if the action requires a selection.",
|
|
1656
|
+
"artifactType": "XMLProperty",
|
|
1657
|
+
"metadata": {
|
|
1658
|
+
"type": "Property"
|
|
1659
|
+
}
|
|
1660
|
+
},
|
|
1204
1661
|
"text": {
|
|
1205
1662
|
"type": "string",
|
|
1206
|
-
"description": "The text that will be displayed for this action
|
|
1663
|
+
"description": "The text that will be displayed for this action",
|
|
1664
|
+
"artifactType": "XMLProperty",
|
|
1665
|
+
"metadata": {
|
|
1666
|
+
"type": "Property"
|
|
1667
|
+
},
|
|
1668
|
+
"i18nClassification": "BUT: Text of the action button"
|
|
1669
|
+
},
|
|
1670
|
+
"id": {
|
|
1671
|
+
"type": "string",
|
|
1672
|
+
"description": "Unique id of control",
|
|
1673
|
+
"artifactType": "XMLProperty",
|
|
1674
|
+
"metadata": {
|
|
1675
|
+
"type": "Property"
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
},
|
|
1679
|
+
"additionalProperties": false,
|
|
1680
|
+
"metadata": {
|
|
1681
|
+
"path": [],
|
|
1682
|
+
"type": "Control"
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
"sap.fe.macros.table.ActionGroup": {
|
|
1686
|
+
"description": "Definition of a custom ActionGroup to be used inside the table toolbar",
|
|
1687
|
+
"isViewNode": true,
|
|
1688
|
+
"type": "object",
|
|
1689
|
+
"properties": {
|
|
1690
|
+
"anchor": {
|
|
1691
|
+
"type": "string",
|
|
1692
|
+
"description": "Reference to the key of another action or action group already displayed in the toolbar to properly place this one",
|
|
1693
|
+
"artifactType": "XMLProperty",
|
|
1694
|
+
"metadata": {
|
|
1695
|
+
"type": "Property"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"key": {
|
|
1699
|
+
"type": "string",
|
|
1700
|
+
"description": "Unique identifier of the ActionGroup",
|
|
1207
1701
|
"artifactType": "XMLProperty",
|
|
1208
1702
|
"metadata": {
|
|
1209
1703
|
"type": "Property"
|
|
1210
1704
|
}
|
|
1211
1705
|
},
|
|
1706
|
+
"placement": {
|
|
1707
|
+
"type": "string",
|
|
1708
|
+
"description": "Defines where this action group should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
1709
|
+
"artifactType": "XMLProperty",
|
|
1710
|
+
"metadata": {
|
|
1711
|
+
"type": "Property"
|
|
1712
|
+
},
|
|
1713
|
+
"enum": [
|
|
1714
|
+
"After",
|
|
1715
|
+
"Before"
|
|
1716
|
+
]
|
|
1717
|
+
},
|
|
1718
|
+
"text": {
|
|
1719
|
+
"type": "string",
|
|
1720
|
+
"description": "The text that will be displayed for this action group",
|
|
1721
|
+
"artifactType": "XMLProperty",
|
|
1722
|
+
"metadata": {
|
|
1723
|
+
"type": "Property"
|
|
1724
|
+
},
|
|
1725
|
+
"i18nClassification": "BUT: Text of the action group button"
|
|
1726
|
+
},
|
|
1212
1727
|
"id": {
|
|
1213
1728
|
"type": "string",
|
|
1214
1729
|
"description": "Unique id of control",
|
|
@@ -1248,57 +1763,936 @@
|
|
|
1248
1763
|
"type": "Property"
|
|
1249
1764
|
}
|
|
1250
1765
|
},
|
|
1251
|
-
"header": {
|
|
1766
|
+
"header": {
|
|
1767
|
+
"type": "string",
|
|
1768
|
+
"description": "The text that will be displayed for this column header",
|
|
1769
|
+
"artifactType": "XMLProperty",
|
|
1770
|
+
"metadata": {
|
|
1771
|
+
"type": "Property"
|
|
1772
|
+
},
|
|
1773
|
+
"i18nClassification": "COL: Header of the column"
|
|
1774
|
+
},
|
|
1775
|
+
"horizontalAlign": {
|
|
1776
|
+
"type": "string",
|
|
1777
|
+
"description": "Aligns the header as well as the content horizontally",
|
|
1778
|
+
"artifactType": "XMLProperty",
|
|
1779
|
+
"metadata": {
|
|
1780
|
+
"type": "Property"
|
|
1781
|
+
}
|
|
1782
|
+
},
|
|
1783
|
+
"importance": {
|
|
1784
|
+
"type": "string",
|
|
1785
|
+
"description": "Defines the column importance.\nYou can define which columns should be automatically moved to the pop-in area based on their importance\n",
|
|
1786
|
+
"artifactType": "XMLProperty",
|
|
1787
|
+
"metadata": {
|
|
1788
|
+
"type": "Property"
|
|
1789
|
+
}
|
|
1790
|
+
},
|
|
1791
|
+
"key": {
|
|
1792
|
+
"type": "string",
|
|
1793
|
+
"description": "Unique identifier of the column",
|
|
1794
|
+
"artifactType": "XMLProperty",
|
|
1795
|
+
"metadata": {
|
|
1796
|
+
"type": "Property"
|
|
1797
|
+
}
|
|
1798
|
+
},
|
|
1799
|
+
"placement": {
|
|
1800
|
+
"type": "string",
|
|
1801
|
+
"description": "Defines where this column should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
1802
|
+
"artifactType": "XMLProperty",
|
|
1803
|
+
"metadata": {
|
|
1804
|
+
"type": "Property"
|
|
1805
|
+
},
|
|
1806
|
+
"enum": [
|
|
1807
|
+
"After",
|
|
1808
|
+
"Before"
|
|
1809
|
+
]
|
|
1810
|
+
},
|
|
1811
|
+
"width": {
|
|
1812
|
+
"type": "string",
|
|
1813
|
+
"description": "Defines the column's width.\nAllowed values are `auto`, `value` and `inherit` according to sap.ui.core.CSSSize\n",
|
|
1814
|
+
"artifactType": "XMLProperty",
|
|
1815
|
+
"metadata": {
|
|
1816
|
+
"type": "Property"
|
|
1817
|
+
}
|
|
1818
|
+
},
|
|
1819
|
+
"widthIncludingColumnHeader": {
|
|
1820
|
+
"type": "boolean",
|
|
1821
|
+
"description": "Indicates if the column header should be a part of the width calculation.",
|
|
1822
|
+
"artifactType": "XMLProperty",
|
|
1823
|
+
"metadata": {
|
|
1824
|
+
"type": "Property"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
"id": {
|
|
1828
|
+
"type": "string",
|
|
1829
|
+
"description": "Unique id of control",
|
|
1830
|
+
"artifactType": "XMLProperty",
|
|
1831
|
+
"metadata": {
|
|
1832
|
+
"type": "Property"
|
|
1833
|
+
}
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
"additionalProperties": false,
|
|
1837
|
+
"metadata": {
|
|
1838
|
+
"path": [],
|
|
1839
|
+
"type": "Control"
|
|
1840
|
+
}
|
|
1841
|
+
},
|
|
1842
|
+
"sap.fe.macros.Table": {
|
|
1843
|
+
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\n<macros:Table id=\"MyTable\" metaPath=\"@com.sap.vocabularies.UI.v1.LineItem\" />\n\n",
|
|
1844
|
+
"isViewNode": true,
|
|
1845
|
+
"type": "object",
|
|
1846
|
+
"properties": {
|
|
1847
|
+
"busy": {
|
|
1848
|
+
"type": "boolean",
|
|
1849
|
+
"description": "An expression that allows you to control the 'busy' state of the table.",
|
|
1850
|
+
"artifactType": "XMLProperty",
|
|
1851
|
+
"metadata": {
|
|
1852
|
+
"type": "Property"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
"contextPath": {
|
|
1856
|
+
"type": "string",
|
|
1857
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1858
|
+
"artifactType": "XMLProperty",
|
|
1859
|
+
"metadata": {
|
|
1860
|
+
"type": "Property"
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
"creationMode": {
|
|
1864
|
+
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
1865
|
+
"description": "creationMode",
|
|
1866
|
+
"artifactType": "XMLProperty",
|
|
1867
|
+
"isViewNode": true,
|
|
1868
|
+
"metadata": {
|
|
1869
|
+
"type": "Property"
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"disableCopyToClipboard": {
|
|
1873
|
+
"type": "boolean",
|
|
1874
|
+
"description": "Controls if the copy functionality of the table is disabled or not.",
|
|
1875
|
+
"artifactType": "XMLProperty",
|
|
1876
|
+
"metadata": {
|
|
1877
|
+
"type": "Property"
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
"enableAutoColumnWidth": {
|
|
1881
|
+
"type": "boolean",
|
|
1882
|
+
"description": "Specifies if the column width is automatically calculated.",
|
|
1883
|
+
"artifactType": "XMLProperty",
|
|
1884
|
+
"metadata": {
|
|
1885
|
+
"type": "Property"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
"enableExport": {
|
|
1889
|
+
"type": "boolean",
|
|
1890
|
+
"description": "Controls if the export functionality of the table is enabled or not.",
|
|
1891
|
+
"artifactType": "XMLProperty",
|
|
1892
|
+
"metadata": {
|
|
1893
|
+
"type": "Property"
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1896
|
+
"enableFullScreen": {
|
|
1897
|
+
"type": "boolean",
|
|
1898
|
+
"description": "Controls whether the table can be opened in fullscreen mode or not.",
|
|
1899
|
+
"artifactType": "XMLProperty",
|
|
1900
|
+
"metadata": {
|
|
1901
|
+
"type": "Property"
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"enablePaste": {
|
|
1905
|
+
"type": "boolean",
|
|
1906
|
+
"description": "Controls if the paste functionality of the table is enabled or not.",
|
|
1907
|
+
"artifactType": "XMLProperty",
|
|
1908
|
+
"metadata": {
|
|
1909
|
+
"type": "Property"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
"exportRequestSize": {
|
|
1913
|
+
"$ref": "#/definitions/int",
|
|
1914
|
+
"description": "exportRequestSize",
|
|
1915
|
+
"artifactType": "XMLProperty",
|
|
1916
|
+
"isViewNode": true,
|
|
1917
|
+
"metadata": {
|
|
1918
|
+
"type": "Property"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
"filterBar": {
|
|
1922
|
+
"type": "string",
|
|
1923
|
+
"description": "ID of the FilterBar building block associated with the table.",
|
|
1924
|
+
"artifactType": "XMLProperty",
|
|
1925
|
+
"metadata": {
|
|
1926
|
+
"type": "Property"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"frozenColumnCount": {
|
|
1930
|
+
"$ref": "#/definitions/int",
|
|
1931
|
+
"description": "frozenColumnCount",
|
|
1932
|
+
"artifactType": "XMLProperty",
|
|
1933
|
+
"isViewNode": true,
|
|
1934
|
+
"metadata": {
|
|
1935
|
+
"type": "Property"
|
|
1936
|
+
}
|
|
1937
|
+
},
|
|
1938
|
+
"header": {
|
|
1939
|
+
"type": "string",
|
|
1940
|
+
"description": "Specifies the header text that is shown in the table.",
|
|
1941
|
+
"artifactType": "XMLProperty",
|
|
1942
|
+
"metadata": {
|
|
1943
|
+
"type": "Property"
|
|
1944
|
+
},
|
|
1945
|
+
"i18nClassification": "TIT: Header of the table"
|
|
1946
|
+
},
|
|
1947
|
+
"headerVisible": {
|
|
1948
|
+
"type": "boolean",
|
|
1949
|
+
"description": "Controls if the header text should be shown or not.",
|
|
1950
|
+
"artifactType": "XMLProperty",
|
|
1951
|
+
"metadata": {
|
|
1952
|
+
"type": "Property"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"ignoredFields": {
|
|
1956
|
+
"type": "string",
|
|
1957
|
+
"description": "Comma-separated value of fields that must be ignored in the OData metadata by the Table building block.\nThe table building block is not going to create built-in columns or offer table personalization for comma-separated value of fields that are provided in the ignoredfields.\nAny column referencing an ignored field is to be removed.",
|
|
1958
|
+
"artifactType": "XMLProperty",
|
|
1959
|
+
"metadata": {
|
|
1960
|
+
"type": "Property"
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
"isSearchable": {
|
|
1964
|
+
"type": "boolean",
|
|
1965
|
+
"description": "Defines whether to display the search action.",
|
|
1966
|
+
"artifactType": "XMLProperty",
|
|
1967
|
+
"metadata": {
|
|
1968
|
+
"type": "Property"
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1971
|
+
"metaPath": {
|
|
1972
|
+
"type": "string",
|
|
1973
|
+
"description": "Defines the relative path to a LineItem, PresentationVariant or SelectionPresentationVariant in the metamodel, based on the current contextPath.",
|
|
1974
|
+
"artifactType": "XMLProperty",
|
|
1975
|
+
"metadata": {
|
|
1976
|
+
"type": "Property"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"personalization": {
|
|
1980
|
+
"type": "string",
|
|
1981
|
+
"description": "Controls which options should be enabled for the table personalization dialog.\nIf it is set to `true`, all possible options for this kind of table are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Column\n - Filter\n",
|
|
1982
|
+
"artifactType": "XMLProperty",
|
|
1983
|
+
"metadata": {
|
|
1984
|
+
"type": "Property"
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"readOnly": {
|
|
1988
|
+
"type": "boolean",
|
|
1989
|
+
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
1990
|
+
"artifactType": "XMLProperty",
|
|
1991
|
+
"metadata": {
|
|
1992
|
+
"type": "Property"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
"rowCount": {
|
|
1996
|
+
"$ref": "#/definitions/int",
|
|
1997
|
+
"description": "rowCount",
|
|
1998
|
+
"artifactType": "XMLProperty",
|
|
1999
|
+
"isViewNode": true,
|
|
2000
|
+
"metadata": {
|
|
2001
|
+
"type": "Property"
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
"rowCountMode": {
|
|
2005
|
+
"type": "string",
|
|
2006
|
+
"description": "Defines how the table handles the visible rows. Does not apply to Responsive tables.\nAllowed values are `Auto`, `Fixed`.\n- If set to `Fixed`, the table always has as many rows as defined in the rowCount property.\n- If set to `Auto`, the number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the `rowCount` property.\n",
|
|
2007
|
+
"artifactType": "XMLProperty",
|
|
2008
|
+
"metadata": {
|
|
2009
|
+
"type": "Property"
|
|
2010
|
+
},
|
|
2011
|
+
"enum": [
|
|
2012
|
+
"Auto",
|
|
2013
|
+
"Fixed"
|
|
2014
|
+
]
|
|
2015
|
+
},
|
|
2016
|
+
"selectionMode": {
|
|
2017
|
+
"type": "string",
|
|
2018
|
+
"description": "Defines the selection mode to be used by the table.\nAllowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.\nIf set to 'Single', 'Multi' or 'Auto', SAP Fiori elements hooks into the standard lifecycle to determine the consistent selection mode.\nIf set to 'ForceSingle' or 'ForceMulti' your choice will be respected but this might not respect the Fiori guidelines.\n",
|
|
2019
|
+
"artifactType": "XMLProperty",
|
|
2020
|
+
"metadata": {
|
|
2021
|
+
"type": "Property"
|
|
2022
|
+
},
|
|
2023
|
+
"enum": [
|
|
2024
|
+
"None",
|
|
2025
|
+
"Single",
|
|
2026
|
+
"Multi",
|
|
2027
|
+
"Auto",
|
|
2028
|
+
"ForceMulti",
|
|
2029
|
+
"ForceSingle"
|
|
2030
|
+
]
|
|
2031
|
+
},
|
|
2032
|
+
"type": {
|
|
2033
|
+
"type": "string",
|
|
2034
|
+
"description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
|
|
2035
|
+
"artifactType": "XMLProperty",
|
|
2036
|
+
"metadata": {
|
|
2037
|
+
"type": "Property"
|
|
2038
|
+
},
|
|
2039
|
+
"enum": [
|
|
2040
|
+
"GridTable",
|
|
2041
|
+
"ResponsiveTable",
|
|
2042
|
+
"AnalyticalTable"
|
|
2043
|
+
]
|
|
2044
|
+
},
|
|
2045
|
+
"variantManagement": {
|
|
2046
|
+
"type": "string",
|
|
2047
|
+
"description": "Controls the kind of variant management that should be enabled for the table.\nAllowed value is `Control`.\nIf set with value `Control`, a variant management control is seen within the table and the table is linked to this.\nIf not set with any value, control level variant management is not available for this table.\n",
|
|
2048
|
+
"artifactType": "XMLProperty",
|
|
2049
|
+
"metadata": {
|
|
2050
|
+
"type": "Property"
|
|
2051
|
+
},
|
|
2052
|
+
"enum": [
|
|
2053
|
+
"None",
|
|
2054
|
+
"Page",
|
|
2055
|
+
"Control"
|
|
2056
|
+
]
|
|
2057
|
+
},
|
|
2058
|
+
"widthIncludingColumnHeader": {
|
|
2059
|
+
"type": "boolean",
|
|
2060
|
+
"description": "Indicates if the column header should be a part of the width calculation.",
|
|
2061
|
+
"artifactType": "XMLProperty",
|
|
2062
|
+
"metadata": {
|
|
2063
|
+
"type": "Property"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
"id": {
|
|
2067
|
+
"type": "string",
|
|
2068
|
+
"description": "Unique id of control",
|
|
2069
|
+
"artifactType": "XMLProperty",
|
|
2070
|
+
"metadata": {
|
|
2071
|
+
"type": "Property"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"actions": {
|
|
2075
|
+
"type": "object",
|
|
2076
|
+
"additionalProperties": {
|
|
2077
|
+
"$ref": "#/definitions/sap.fe.macros.table.Action"
|
|
2078
|
+
},
|
|
2079
|
+
"isViewNode": true,
|
|
2080
|
+
"metadata": {
|
|
2081
|
+
"path": [],
|
|
2082
|
+
"type": "Aggregation"
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
"columns": {
|
|
2086
|
+
"type": "object",
|
|
2087
|
+
"additionalProperties": {
|
|
2088
|
+
"$ref": "#/definitions/sap.fe.macros.table.Column"
|
|
2089
|
+
},
|
|
2090
|
+
"isViewNode": true,
|
|
2091
|
+
"metadata": {
|
|
2092
|
+
"path": [],
|
|
2093
|
+
"type": "Aggregation"
|
|
2094
|
+
}
|
|
2095
|
+
},
|
|
2096
|
+
"beforeRebindTable": {
|
|
2097
|
+
"type": "string",
|
|
2098
|
+
"description": "An event is triggered when the table is about to be rebinded. This event contains information about the binding info.\nYou can use this event to add or read: Filters, Sorters.\nYou can use this event to read the binding info.\nYou can use this event to add: Selects.\n",
|
|
2099
|
+
"artifactType": "XMLProperty",
|
|
2100
|
+
"metadata": {
|
|
2101
|
+
"type": "Event"
|
|
2102
|
+
}
|
|
2103
|
+
},
|
|
2104
|
+
"rowPress": {
|
|
2105
|
+
"type": "string",
|
|
2106
|
+
"description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
|
|
2107
|
+
"artifactType": "XMLProperty",
|
|
2108
|
+
"metadata": {
|
|
2109
|
+
"type": "Event"
|
|
2110
|
+
}
|
|
2111
|
+
},
|
|
2112
|
+
"selectionChange": {
|
|
2113
|
+
"type": "string",
|
|
2114
|
+
"description": "An event triggered when the selection in the table changes.",
|
|
2115
|
+
"artifactType": "XMLProperty",
|
|
2116
|
+
"metadata": {
|
|
2117
|
+
"type": "Event"
|
|
2118
|
+
}
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
"additionalProperties": false,
|
|
2122
|
+
"metadata": {
|
|
2123
|
+
"path": [],
|
|
2124
|
+
"type": "Control",
|
|
2125
|
+
"defaultAggregation": "columns"
|
|
2126
|
+
}
|
|
2127
|
+
},
|
|
2128
|
+
"sap.fe.macros.table.Table": {
|
|
2129
|
+
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/table/Table\"], function(Table) {\n\t ...\n\t new Table(\"myTable\", {metaPath:\"@com.sap.vocabularies.UI.v1.LineItem\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the Table that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
2130
|
+
"isViewNode": true,
|
|
2131
|
+
"type": "object",
|
|
2132
|
+
"properties": {
|
|
2133
|
+
"busy": {
|
|
2134
|
+
"type": "boolean",
|
|
2135
|
+
"description": "An expression that allows you to control the 'busy' state of the table.",
|
|
2136
|
+
"artifactType": "XMLProperty",
|
|
2137
|
+
"metadata": {
|
|
2138
|
+
"type": "Property"
|
|
2139
|
+
}
|
|
2140
|
+
},
|
|
2141
|
+
"contextPath": {
|
|
2142
|
+
"type": "string",
|
|
2143
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
2144
|
+
"artifactType": "XMLProperty",
|
|
2145
|
+
"metadata": {
|
|
2146
|
+
"type": "Property"
|
|
2147
|
+
}
|
|
2148
|
+
},
|
|
2149
|
+
"creationMode": {
|
|
2150
|
+
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
2151
|
+
"description": "creationMode",
|
|
2152
|
+
"artifactType": "XMLProperty",
|
|
2153
|
+
"isViewNode": true,
|
|
2154
|
+
"metadata": {
|
|
2155
|
+
"type": "Property"
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"disableCopyToClipboard": {
|
|
2159
|
+
"type": "boolean",
|
|
2160
|
+
"description": "Controls if the copy functionality of the table is disabled or not.",
|
|
2161
|
+
"artifactType": "XMLProperty",
|
|
2162
|
+
"metadata": {
|
|
2163
|
+
"type": "Property"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
"enableAutoColumnWidth": {
|
|
2167
|
+
"type": "boolean",
|
|
2168
|
+
"description": "Specifies if the column width is automatically calculated.",
|
|
2169
|
+
"artifactType": "XMLProperty",
|
|
2170
|
+
"metadata": {
|
|
2171
|
+
"type": "Property"
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
2174
|
+
"enableExport": {
|
|
2175
|
+
"type": "boolean",
|
|
2176
|
+
"description": "Controls if the export functionality of the table is enabled or not.",
|
|
2177
|
+
"artifactType": "XMLProperty",
|
|
2178
|
+
"metadata": {
|
|
2179
|
+
"type": "Property"
|
|
2180
|
+
}
|
|
2181
|
+
},
|
|
2182
|
+
"enableFullScreen": {
|
|
2183
|
+
"type": "boolean",
|
|
2184
|
+
"description": "Controls whether the table can be opened in fullscreen mode or not.",
|
|
2185
|
+
"artifactType": "XMLProperty",
|
|
2186
|
+
"metadata": {
|
|
2187
|
+
"type": "Property"
|
|
2188
|
+
}
|
|
2189
|
+
},
|
|
2190
|
+
"enablePaste": {
|
|
2191
|
+
"type": "boolean",
|
|
2192
|
+
"description": "Controls if the paste functionality of the table is enabled or not.",
|
|
2193
|
+
"artifactType": "XMLProperty",
|
|
2194
|
+
"metadata": {
|
|
2195
|
+
"type": "Property"
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
2198
|
+
"exportRequestSize": {
|
|
2199
|
+
"$ref": "#/definitions/int",
|
|
2200
|
+
"description": "exportRequestSize",
|
|
2201
|
+
"artifactType": "XMLProperty",
|
|
2202
|
+
"isViewNode": true,
|
|
2203
|
+
"metadata": {
|
|
2204
|
+
"type": "Property"
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
"filterBar": {
|
|
2208
|
+
"type": "string",
|
|
2209
|
+
"description": "ID of the FilterBar building block associated with the table.",
|
|
2210
|
+
"artifactType": "XMLProperty",
|
|
2211
|
+
"metadata": {
|
|
2212
|
+
"type": "Property"
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"frozenColumnCount": {
|
|
2216
|
+
"$ref": "#/definitions/int",
|
|
2217
|
+
"description": "frozenColumnCount",
|
|
2218
|
+
"artifactType": "XMLProperty",
|
|
2219
|
+
"isViewNode": true,
|
|
2220
|
+
"metadata": {
|
|
2221
|
+
"type": "Property"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"header": {
|
|
2225
|
+
"type": "string",
|
|
2226
|
+
"description": "Specifies the header text that is shown in the table.",
|
|
2227
|
+
"artifactType": "XMLProperty",
|
|
2228
|
+
"metadata": {
|
|
2229
|
+
"type": "Property"
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2232
|
+
"headerVisible": {
|
|
2233
|
+
"type": "boolean",
|
|
2234
|
+
"description": "Controls if the header text should be shown or not.",
|
|
2235
|
+
"artifactType": "XMLProperty",
|
|
2236
|
+
"metadata": {
|
|
2237
|
+
"type": "Property"
|
|
2238
|
+
}
|
|
2239
|
+
},
|
|
2240
|
+
"ignoredFields": {
|
|
2241
|
+
"type": "string",
|
|
2242
|
+
"description": "Comma-separated value of fields that must be ignored in the OData metadata by the Table building block.\nThe table building block is not going to create built-in columns or offer table personalization for comma-separated value of fields that are provided in the ignoredfields.\nAny column referencing an ignored field is to be removed.",
|
|
2243
|
+
"artifactType": "XMLProperty",
|
|
2244
|
+
"metadata": {
|
|
2245
|
+
"type": "Property"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"isSearchable": {
|
|
2249
|
+
"type": "boolean",
|
|
2250
|
+
"description": "Defines whether to display the search action.",
|
|
2251
|
+
"artifactType": "XMLProperty",
|
|
2252
|
+
"metadata": {
|
|
2253
|
+
"type": "Property"
|
|
2254
|
+
}
|
|
2255
|
+
},
|
|
2256
|
+
"metaPath": {
|
|
2257
|
+
"type": "string",
|
|
2258
|
+
"description": "Defines the relative path to a LineItem, PresentationVariant or SelectionPresentationVariant in the metamodel, based on the current contextPath.",
|
|
2259
|
+
"artifactType": "XMLProperty",
|
|
2260
|
+
"metadata": {
|
|
2261
|
+
"type": "Property"
|
|
2262
|
+
}
|
|
2263
|
+
},
|
|
2264
|
+
"personalization": {
|
|
2265
|
+
"type": "string",
|
|
2266
|
+
"description": "Controls which options should be enabled for the table personalization dialog.\nIf it is set to `true`, all possible options for this kind of table are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Column\n - Filter\n",
|
|
2267
|
+
"artifactType": "XMLProperty",
|
|
2268
|
+
"metadata": {
|
|
2269
|
+
"type": "Property"
|
|
2270
|
+
}
|
|
2271
|
+
},
|
|
2272
|
+
"readOnly": {
|
|
2273
|
+
"type": "boolean",
|
|
2274
|
+
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
2275
|
+
"artifactType": "XMLProperty",
|
|
2276
|
+
"metadata": {
|
|
2277
|
+
"type": "Property"
|
|
2278
|
+
}
|
|
2279
|
+
},
|
|
2280
|
+
"rowCount": {
|
|
2281
|
+
"$ref": "#/definitions/int",
|
|
2282
|
+
"description": "rowCount",
|
|
2283
|
+
"artifactType": "XMLProperty",
|
|
2284
|
+
"isViewNode": true,
|
|
2285
|
+
"metadata": {
|
|
2286
|
+
"type": "Property"
|
|
2287
|
+
}
|
|
2288
|
+
},
|
|
2289
|
+
"rowCountMode": {
|
|
2290
|
+
"type": "string",
|
|
2291
|
+
"description": "Defines how the table handles the visible rows. Does not apply to Responsive tables.\nAllowed values are `Auto`, `Fixed`.\n- If set to `Fixed`, the table always has as many rows as defined in the rowCount property.\n- If set to `Auto`, the number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the `rowCount` property.\n",
|
|
2292
|
+
"artifactType": "XMLProperty",
|
|
2293
|
+
"metadata": {
|
|
2294
|
+
"type": "Property"
|
|
2295
|
+
},
|
|
2296
|
+
"enum": [
|
|
2297
|
+
"Auto",
|
|
2298
|
+
"Fixed"
|
|
2299
|
+
]
|
|
2300
|
+
},
|
|
2301
|
+
"selectionMode": {
|
|
2302
|
+
"type": "string",
|
|
2303
|
+
"description": "Defines the selection mode to be used by the table.\nAllowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.\nIf set to 'Single', 'Multi' or 'Auto', SAP Fiori elements hooks into the standard lifecycle to determine the consistent selection mode.\nIf set to 'ForceSingle' or 'ForceMulti' your choice will be respected but this might not respect the Fiori guidelines.\n",
|
|
2304
|
+
"artifactType": "XMLProperty",
|
|
2305
|
+
"metadata": {
|
|
2306
|
+
"type": "Property"
|
|
2307
|
+
},
|
|
2308
|
+
"enum": [
|
|
2309
|
+
"None",
|
|
2310
|
+
"Single",
|
|
2311
|
+
"Multi",
|
|
2312
|
+
"Auto",
|
|
2313
|
+
"ForceMulti",
|
|
2314
|
+
"ForceSingle"
|
|
2315
|
+
]
|
|
2316
|
+
},
|
|
2317
|
+
"type": {
|
|
2318
|
+
"type": "string",
|
|
2319
|
+
"description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
|
|
2320
|
+
"artifactType": "XMLProperty",
|
|
2321
|
+
"metadata": {
|
|
2322
|
+
"type": "Property"
|
|
2323
|
+
},
|
|
2324
|
+
"enum": [
|
|
2325
|
+
"GridTable",
|
|
2326
|
+
"ResponsiveTable",
|
|
2327
|
+
"AnalyticalTable"
|
|
2328
|
+
]
|
|
2329
|
+
},
|
|
2330
|
+
"variantManagement": {
|
|
2331
|
+
"type": "string",
|
|
2332
|
+
"description": "Controls the kind of variant management that should be enabled for the table.\nAllowed value is `Control`.\nIf set with value `Control`, a variant management control is seen within the table and the table is linked to this.\nIf not set with any value, control level variant management is not available for this table.\n",
|
|
2333
|
+
"artifactType": "XMLProperty",
|
|
2334
|
+
"metadata": {
|
|
2335
|
+
"type": "Property"
|
|
2336
|
+
},
|
|
2337
|
+
"const": "Control"
|
|
2338
|
+
},
|
|
2339
|
+
"widthIncludingColumnHeader": {
|
|
2340
|
+
"type": "boolean",
|
|
2341
|
+
"description": "Indicates if the column header should be a part of the width calculation.",
|
|
2342
|
+
"artifactType": "XMLProperty",
|
|
2343
|
+
"metadata": {
|
|
2344
|
+
"type": "Property"
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
2347
|
+
"id": {
|
|
2348
|
+
"type": "string",
|
|
2349
|
+
"description": "Unique id of control",
|
|
2350
|
+
"artifactType": "XMLProperty",
|
|
2351
|
+
"metadata": {
|
|
2352
|
+
"type": "Property"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
"actions": {
|
|
2356
|
+
"type": "object",
|
|
2357
|
+
"additionalProperties": {
|
|
2358
|
+
"$ref": "#/definitions/sap.fe.macros.table.Action"
|
|
2359
|
+
},
|
|
2360
|
+
"isViewNode": true,
|
|
2361
|
+
"metadata": {
|
|
2362
|
+
"path": [],
|
|
2363
|
+
"type": "Aggregation"
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2366
|
+
"columns": {
|
|
2367
|
+
"type": "object",
|
|
2368
|
+
"additionalProperties": {
|
|
2369
|
+
"$ref": "#/definitions/sap.fe.macros.table.Column"
|
|
2370
|
+
},
|
|
2371
|
+
"isViewNode": true,
|
|
2372
|
+
"metadata": {
|
|
2373
|
+
"path": [],
|
|
2374
|
+
"type": "Aggregation"
|
|
2375
|
+
}
|
|
2376
|
+
},
|
|
2377
|
+
"beforeRebindTable": {
|
|
2378
|
+
"type": "string",
|
|
2379
|
+
"description": "An event is triggered when the table is about to be rebinded. This event contains information about the binding info.\nYou can use this event to add or read: Filters, Sorters.\nYou can use this event to read the binding info.\nYou can use this event to add: Selects.\n",
|
|
2380
|
+
"artifactType": "XMLProperty",
|
|
2381
|
+
"metadata": {
|
|
2382
|
+
"type": "Event"
|
|
2383
|
+
}
|
|
2384
|
+
},
|
|
2385
|
+
"rowPress": {
|
|
2386
|
+
"type": "string",
|
|
2387
|
+
"description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
|
|
2388
|
+
"artifactType": "XMLProperty",
|
|
2389
|
+
"metadata": {
|
|
2390
|
+
"type": "Event"
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
"selectionChange": {
|
|
2394
|
+
"type": "string",
|
|
2395
|
+
"description": "An event triggered when the selection in the table changes.",
|
|
2396
|
+
"artifactType": "XMLProperty",
|
|
2397
|
+
"metadata": {
|
|
2398
|
+
"type": "Event"
|
|
2399
|
+
}
|
|
2400
|
+
}
|
|
2401
|
+
},
|
|
2402
|
+
"additionalProperties": false,
|
|
2403
|
+
"metadata": {
|
|
2404
|
+
"path": [],
|
|
2405
|
+
"type": "Control"
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
2408
|
+
"sap.fe.macros.table.TableCreationOptions": {
|
|
2409
|
+
"description": "Create options for the table.",
|
|
2410
|
+
"isViewNode": true,
|
|
2411
|
+
"type": "object",
|
|
2412
|
+
"properties": {
|
|
2413
|
+
"createAtEnd": {
|
|
2414
|
+
"type": "boolean",
|
|
2415
|
+
"description": "Specifies if the new entry should be created at the top or bottom of a table in case of creationMode 'Inline'\nThe default value is 'false'\n",
|
|
2416
|
+
"artifactType": "XMLProperty",
|
|
2417
|
+
"metadata": {
|
|
2418
|
+
"type": "Property"
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
"inlineCreationRowsHiddenInEditMode": {
|
|
2422
|
+
"type": "boolean",
|
|
2423
|
+
"description": "Specifies if the new entry should be hidden in case of creationMode 'InlineCreationRows'. This only applies to responsive tables.\nThe default value is 'false'\n",
|
|
2424
|
+
"artifactType": "XMLProperty",
|
|
2425
|
+
"metadata": {
|
|
2426
|
+
"type": "Property"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
"name": {
|
|
2430
|
+
"type": "string",
|
|
2431
|
+
"description": "Defines the creation mode to be used by the table.\nAllowed values are `NewPage`, `Inline`, `InlineCreationsRows` or `External`.\n\nNewPage - the created document is shown in a new page, depending on whether metadata 'Sync', 'Async' or 'Deferred' is used\nInline - The creation is done inline\nInlineCreationsRows - The creation is done inline with an empty row\nExternal - The creation is done in a different application specified via the parameter 'outbound'\nIf not set with any value:\nif navigation is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.\n",
|
|
2432
|
+
"artifactType": "XMLProperty",
|
|
2433
|
+
"metadata": {
|
|
2434
|
+
"type": "Property"
|
|
2435
|
+
},
|
|
2436
|
+
"enum": [
|
|
2437
|
+
"External",
|
|
2438
|
+
"Inline",
|
|
2439
|
+
"InlineCreationRows",
|
|
2440
|
+
"NewPage"
|
|
2441
|
+
]
|
|
2442
|
+
},
|
|
2443
|
+
"outbound": {
|
|
2444
|
+
"type": "string",
|
|
2445
|
+
"description": "The navigation target where the document is created in case of creationMode 'External'\n",
|
|
2446
|
+
"artifactType": "XMLProperty",
|
|
2447
|
+
"metadata": {
|
|
2448
|
+
"type": "Property"
|
|
2449
|
+
}
|
|
2450
|
+
},
|
|
2451
|
+
"id": {
|
|
2452
|
+
"type": "string",
|
|
2453
|
+
"description": "Unique id of control",
|
|
2454
|
+
"artifactType": "XMLProperty",
|
|
2455
|
+
"metadata": {
|
|
2456
|
+
"type": "Property"
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
},
|
|
2460
|
+
"additionalProperties": false,
|
|
2461
|
+
"metadata": {
|
|
2462
|
+
"path": [],
|
|
2463
|
+
"type": "Control"
|
|
2464
|
+
}
|
|
2465
|
+
},
|
|
2466
|
+
"sap.fe.macros.TreeTable": {
|
|
2467
|
+
"description": "Building block used to create a tree table based on the metadata provided by OData V4.",
|
|
2468
|
+
"isViewNode": true,
|
|
2469
|
+
"type": "object",
|
|
2470
|
+
"properties": {
|
|
2471
|
+
"busy": {
|
|
2472
|
+
"type": "boolean",
|
|
2473
|
+
"description": "An expression that allows you to control the 'busy' state of the table.",
|
|
2474
|
+
"artifactType": "XMLProperty",
|
|
2475
|
+
"metadata": {
|
|
2476
|
+
"type": "Property"
|
|
2477
|
+
}
|
|
2478
|
+
},
|
|
2479
|
+
"contextPath": {
|
|
2480
|
+
"type": "string",
|
|
2481
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
2482
|
+
"artifactType": "XMLProperty",
|
|
2483
|
+
"metadata": {
|
|
2484
|
+
"type": "Property"
|
|
2485
|
+
}
|
|
2486
|
+
},
|
|
2487
|
+
"creationMode": {
|
|
2488
|
+
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
2489
|
+
"description": "creationMode",
|
|
2490
|
+
"artifactType": "XMLProperty",
|
|
2491
|
+
"isViewNode": true,
|
|
2492
|
+
"metadata": {
|
|
2493
|
+
"type": "Property"
|
|
2494
|
+
}
|
|
2495
|
+
},
|
|
2496
|
+
"disableCopyToClipboard": {
|
|
2497
|
+
"type": "boolean",
|
|
2498
|
+
"description": "Controls if the copy functionality of the table is disabled or not.",
|
|
2499
|
+
"artifactType": "XMLProperty",
|
|
2500
|
+
"metadata": {
|
|
2501
|
+
"type": "Property"
|
|
2502
|
+
}
|
|
2503
|
+
},
|
|
2504
|
+
"enableAutoColumnWidth": {
|
|
2505
|
+
"type": "boolean",
|
|
2506
|
+
"description": "Specifies if the column width is automatically calculated.",
|
|
2507
|
+
"artifactType": "XMLProperty",
|
|
2508
|
+
"metadata": {
|
|
2509
|
+
"type": "Property"
|
|
2510
|
+
}
|
|
2511
|
+
},
|
|
2512
|
+
"enableExport": {
|
|
2513
|
+
"type": "boolean",
|
|
2514
|
+
"description": "Controls if the export functionality of the table is enabled or not.",
|
|
2515
|
+
"artifactType": "XMLProperty",
|
|
2516
|
+
"metadata": {
|
|
2517
|
+
"type": "Property"
|
|
2518
|
+
}
|
|
2519
|
+
},
|
|
2520
|
+
"enableFullScreen": {
|
|
2521
|
+
"type": "boolean",
|
|
2522
|
+
"description": "Controls whether the table can be opened in fullscreen mode or not.",
|
|
2523
|
+
"artifactType": "XMLProperty",
|
|
2524
|
+
"metadata": {
|
|
2525
|
+
"type": "Property"
|
|
2526
|
+
}
|
|
2527
|
+
},
|
|
2528
|
+
"enablePaste": {
|
|
2529
|
+
"type": "boolean",
|
|
2530
|
+
"description": "Controls if the paste functionality of the table is enabled or not.",
|
|
2531
|
+
"artifactType": "XMLProperty",
|
|
2532
|
+
"metadata": {
|
|
2533
|
+
"type": "Property"
|
|
2534
|
+
}
|
|
2535
|
+
},
|
|
2536
|
+
"exportRequestSize": {
|
|
2537
|
+
"$ref": "#/definitions/int",
|
|
2538
|
+
"description": "exportRequestSize",
|
|
2539
|
+
"artifactType": "XMLProperty",
|
|
2540
|
+
"isViewNode": true,
|
|
2541
|
+
"metadata": {
|
|
2542
|
+
"type": "Property"
|
|
2543
|
+
}
|
|
2544
|
+
},
|
|
2545
|
+
"filterBar": {
|
|
2546
|
+
"type": "string",
|
|
2547
|
+
"description": "ID of the FilterBar building block associated with the table.",
|
|
2548
|
+
"artifactType": "XMLProperty",
|
|
2549
|
+
"metadata": {
|
|
2550
|
+
"type": "Property"
|
|
2551
|
+
}
|
|
2552
|
+
},
|
|
2553
|
+
"frozenColumnCount": {
|
|
2554
|
+
"$ref": "#/definitions/int",
|
|
2555
|
+
"description": "frozenColumnCount",
|
|
2556
|
+
"artifactType": "XMLProperty",
|
|
2557
|
+
"isViewNode": true,
|
|
2558
|
+
"metadata": {
|
|
2559
|
+
"type": "Property"
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2562
|
+
"header": {
|
|
2563
|
+
"type": "string",
|
|
2564
|
+
"description": "Specifies the header text that is shown in the table.",
|
|
2565
|
+
"artifactType": "XMLProperty",
|
|
2566
|
+
"metadata": {
|
|
2567
|
+
"type": "Property"
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2570
|
+
"headerVisible": {
|
|
2571
|
+
"type": "boolean",
|
|
2572
|
+
"description": "Controls if the header text should be shown or not.",
|
|
2573
|
+
"artifactType": "XMLProperty",
|
|
2574
|
+
"metadata": {
|
|
2575
|
+
"type": "Property"
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2578
|
+
"hierarchyQualifier": {
|
|
2579
|
+
"type": "string",
|
|
2580
|
+
"description": "A set of options that can be configured.",
|
|
2581
|
+
"artifactType": "XMLProperty",
|
|
2582
|
+
"metadata": {
|
|
2583
|
+
"type": "Property"
|
|
2584
|
+
}
|
|
2585
|
+
},
|
|
2586
|
+
"ignoredFields": {
|
|
2587
|
+
"type": "string",
|
|
2588
|
+
"description": "Comma-separated value of fields that must be ignored in the OData metadata by the Table building block.\nThe table building block is not going to create built-in columns or offer table personalization for comma-separated value of fields that are provided in the ignoredfields.\nAny column referencing an ignored field is to be removed.",
|
|
2589
|
+
"artifactType": "XMLProperty",
|
|
2590
|
+
"metadata": {
|
|
2591
|
+
"type": "Property"
|
|
2592
|
+
}
|
|
2593
|
+
},
|
|
2594
|
+
"isMoveToPositionAllowed": {
|
|
2595
|
+
"type": "string",
|
|
2596
|
+
"description": "Defines the extension point to control if a source node can be dropped on a specific parent node.\n",
|
|
2597
|
+
"artifactType": "XMLProperty",
|
|
2598
|
+
"metadata": {
|
|
2599
|
+
"type": "Property"
|
|
2600
|
+
}
|
|
2601
|
+
},
|
|
2602
|
+
"isNodeMovable": {
|
|
2603
|
+
"type": "string",
|
|
2604
|
+
"description": "Defines the extension point to control if a node can be dragged.\n",
|
|
2605
|
+
"artifactType": "XMLProperty",
|
|
2606
|
+
"metadata": {
|
|
2607
|
+
"type": "Property"
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"isSearchable": {
|
|
2611
|
+
"type": "boolean",
|
|
2612
|
+
"description": "Defines whether to display the search action.",
|
|
2613
|
+
"artifactType": "XMLProperty",
|
|
2614
|
+
"metadata": {
|
|
2615
|
+
"type": "Property"
|
|
2616
|
+
}
|
|
2617
|
+
},
|
|
2618
|
+
"metaPath": {
|
|
1252
2619
|
"type": "string",
|
|
1253
|
-
"description": "
|
|
2620
|
+
"description": "Defines the relative path to a LineItem, PresentationVariant or SelectionPresentationVariant in the metamodel, based on the current contextPath.",
|
|
1254
2621
|
"artifactType": "XMLProperty",
|
|
1255
2622
|
"metadata": {
|
|
1256
2623
|
"type": "Property"
|
|
1257
2624
|
}
|
|
1258
2625
|
},
|
|
1259
|
-
"
|
|
2626
|
+
"personalization": {
|
|
1260
2627
|
"type": "string",
|
|
1261
|
-
"description": "
|
|
2628
|
+
"description": "Controls which options should be enabled for the table personalization dialog.\nIf it is set to `true`, all possible options for this kind of table are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Column\n - Filter\n",
|
|
1262
2629
|
"artifactType": "XMLProperty",
|
|
1263
2630
|
"metadata": {
|
|
1264
2631
|
"type": "Property"
|
|
1265
2632
|
}
|
|
1266
2633
|
},
|
|
1267
|
-
"
|
|
1268
|
-
"type": "
|
|
1269
|
-
"description": "
|
|
2634
|
+
"readOnly": {
|
|
2635
|
+
"type": "boolean",
|
|
2636
|
+
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
1270
2637
|
"artifactType": "XMLProperty",
|
|
1271
2638
|
"metadata": {
|
|
1272
2639
|
"type": "Property"
|
|
1273
2640
|
}
|
|
1274
2641
|
},
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1277
|
-
"description": "
|
|
2642
|
+
"rowCount": {
|
|
2643
|
+
"$ref": "#/definitions/int",
|
|
2644
|
+
"description": "rowCount",
|
|
1278
2645
|
"artifactType": "XMLProperty",
|
|
2646
|
+
"isViewNode": true,
|
|
1279
2647
|
"metadata": {
|
|
1280
2648
|
"type": "Property"
|
|
1281
2649
|
}
|
|
1282
2650
|
},
|
|
1283
|
-
"
|
|
2651
|
+
"rowCountMode": {
|
|
1284
2652
|
"type": "string",
|
|
1285
|
-
"description": "Defines
|
|
2653
|
+
"description": "Defines how the table handles the visible rows. Does not apply to Responsive tables.\nAllowed values are `Auto`, `Fixed`.\n- If set to `Fixed`, the table always has as many rows as defined in the rowCount property.\n- If set to `Auto`, the number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the `rowCount` property.\n",
|
|
1286
2654
|
"artifactType": "XMLProperty",
|
|
1287
2655
|
"metadata": {
|
|
1288
2656
|
"type": "Property"
|
|
1289
2657
|
},
|
|
1290
2658
|
"enum": [
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
2659
|
+
"Auto",
|
|
2660
|
+
"Fixed"
|
|
1293
2661
|
]
|
|
1294
2662
|
},
|
|
1295
|
-
"
|
|
2663
|
+
"selectionMode": {
|
|
1296
2664
|
"type": "string",
|
|
1297
|
-
"description": "Defines the
|
|
2665
|
+
"description": "Defines the selection mode to be used by the table.\nAllowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.\nIf set to 'Single', 'Multi' or 'Auto', SAP Fiori elements hooks into the standard lifecycle to determine the consistent selection mode.\nIf set to 'ForceSingle' or 'ForceMulti' your choice will be respected but this might not respect the Fiori guidelines.\n",
|
|
1298
2666
|
"artifactType": "XMLProperty",
|
|
1299
2667
|
"metadata": {
|
|
1300
2668
|
"type": "Property"
|
|
1301
|
-
}
|
|
2669
|
+
},
|
|
2670
|
+
"enum": [
|
|
2671
|
+
"None",
|
|
2672
|
+
"Single",
|
|
2673
|
+
"Multi",
|
|
2674
|
+
"Auto",
|
|
2675
|
+
"ForceMulti",
|
|
2676
|
+
"ForceSingle"
|
|
2677
|
+
]
|
|
2678
|
+
},
|
|
2679
|
+
"type": {
|
|
2680
|
+
"type": "string",
|
|
2681
|
+
"description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
|
|
2682
|
+
"artifactType": "XMLProperty",
|
|
2683
|
+
"metadata": {
|
|
2684
|
+
"type": "Property"
|
|
2685
|
+
},
|
|
2686
|
+
"const": "TreeTable"
|
|
2687
|
+
},
|
|
2688
|
+
"variantManagement": {
|
|
2689
|
+
"type": "string",
|
|
2690
|
+
"description": "Controls the kind of variant management that should be enabled for the table.\nAllowed value is `Control`.\nIf set with value `Control`, a variant management control is seen within the table and the table is linked to this.\nIf not set with any value, control level variant management is not available for this table.\n",
|
|
2691
|
+
"artifactType": "XMLProperty",
|
|
2692
|
+
"metadata": {
|
|
2693
|
+
"type": "Property"
|
|
2694
|
+
},
|
|
2695
|
+
"const": "Control"
|
|
1302
2696
|
},
|
|
1303
2697
|
"widthIncludingColumnHeader": {
|
|
1304
2698
|
"type": "boolean",
|
|
@@ -1315,6 +2709,52 @@
|
|
|
1315
2709
|
"metadata": {
|
|
1316
2710
|
"type": "Property"
|
|
1317
2711
|
}
|
|
2712
|
+
},
|
|
2713
|
+
"actions": {
|
|
2714
|
+
"type": "object",
|
|
2715
|
+
"additionalProperties": {
|
|
2716
|
+
"$ref": "#/definitions/sap.fe.macros.table.Action"
|
|
2717
|
+
},
|
|
2718
|
+
"isViewNode": true,
|
|
2719
|
+
"metadata": {
|
|
2720
|
+
"path": [],
|
|
2721
|
+
"type": "Aggregation"
|
|
2722
|
+
}
|
|
2723
|
+
},
|
|
2724
|
+
"columns": {
|
|
2725
|
+
"type": "object",
|
|
2726
|
+
"additionalProperties": {
|
|
2727
|
+
"$ref": "#/definitions/sap.fe.macros.table.Column"
|
|
2728
|
+
},
|
|
2729
|
+
"isViewNode": true,
|
|
2730
|
+
"metadata": {
|
|
2731
|
+
"path": [],
|
|
2732
|
+
"type": "Aggregation"
|
|
2733
|
+
}
|
|
2734
|
+
},
|
|
2735
|
+
"beforeRebindTable": {
|
|
2736
|
+
"type": "string",
|
|
2737
|
+
"description": "An event is triggered when the table is about to be rebinded. This event contains information about the binding info.\nYou can use this event to add or read: Filters, Sorters.\nYou can use this event to read the binding info.\nYou can use this event to add: Selects.\n",
|
|
2738
|
+
"artifactType": "XMLProperty",
|
|
2739
|
+
"metadata": {
|
|
2740
|
+
"type": "Event"
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2743
|
+
"rowPress": {
|
|
2744
|
+
"type": "string",
|
|
2745
|
+
"description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
|
|
2746
|
+
"artifactType": "XMLProperty",
|
|
2747
|
+
"metadata": {
|
|
2748
|
+
"type": "Event"
|
|
2749
|
+
}
|
|
2750
|
+
},
|
|
2751
|
+
"selectionChange": {
|
|
2752
|
+
"type": "string",
|
|
2753
|
+
"description": "An event triggered when the selection in the table changes.",
|
|
2754
|
+
"artifactType": "XMLProperty",
|
|
2755
|
+
"metadata": {
|
|
2756
|
+
"type": "Event"
|
|
2757
|
+
}
|
|
1318
2758
|
}
|
|
1319
2759
|
},
|
|
1320
2760
|
"additionalProperties": false,
|
|
@@ -1323,8 +2763,8 @@
|
|
|
1323
2763
|
"type": "Control"
|
|
1324
2764
|
}
|
|
1325
2765
|
},
|
|
1326
|
-
"sap.fe.macros.
|
|
1327
|
-
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\n
|
|
2766
|
+
"sap.fe.macros.table.TreeTable": {
|
|
2767
|
+
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\nsap.ui.require([\"sap/fe/macros/table/TreeTable\"], function(TreeTable) {\n\t ...\n\t new TreeTable(\"myTable\", {metaPath:\"@com.sap.vocabularies.UI.v1.LineItem\"})\n})\n\nThis is currently an experimental API because the structure of the generated content will change to come closer to the Table that you get out of templates.\nThe public method and property will not change but the internal structure will so be careful on your usage.\n",
|
|
1328
2768
|
"isViewNode": true,
|
|
1329
2769
|
"type": "object",
|
|
1330
2770
|
"properties": {
|
|
@@ -1345,7 +2785,7 @@
|
|
|
1345
2785
|
}
|
|
1346
2786
|
},
|
|
1347
2787
|
"creationMode": {
|
|
1348
|
-
"$ref": "#/definitions/sap.fe.macros.table.
|
|
2788
|
+
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
1349
2789
|
"description": "creationMode",
|
|
1350
2790
|
"artifactType": "XMLProperty",
|
|
1351
2791
|
"isViewNode": true,
|
|
@@ -1353,6 +2793,14 @@
|
|
|
1353
2793
|
"type": "Property"
|
|
1354
2794
|
}
|
|
1355
2795
|
},
|
|
2796
|
+
"disableCopyToClipboard": {
|
|
2797
|
+
"type": "boolean",
|
|
2798
|
+
"description": "Controls if the copy functionality of the table is disabled or not.",
|
|
2799
|
+
"artifactType": "XMLProperty",
|
|
2800
|
+
"metadata": {
|
|
2801
|
+
"type": "Property"
|
|
2802
|
+
}
|
|
2803
|
+
},
|
|
1356
2804
|
"enableAutoColumnWidth": {
|
|
1357
2805
|
"type": "boolean",
|
|
1358
2806
|
"description": "Specifies if the column width is automatically calculated.",
|
|
@@ -1385,6 +2833,15 @@
|
|
|
1385
2833
|
"type": "Property"
|
|
1386
2834
|
}
|
|
1387
2835
|
},
|
|
2836
|
+
"exportRequestSize": {
|
|
2837
|
+
"$ref": "#/definitions/int",
|
|
2838
|
+
"description": "exportRequestSize",
|
|
2839
|
+
"artifactType": "XMLProperty",
|
|
2840
|
+
"isViewNode": true,
|
|
2841
|
+
"metadata": {
|
|
2842
|
+
"type": "Property"
|
|
2843
|
+
}
|
|
2844
|
+
},
|
|
1388
2845
|
"filterBar": {
|
|
1389
2846
|
"type": "string",
|
|
1390
2847
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -1394,9 +2851,10 @@
|
|
|
1394
2851
|
}
|
|
1395
2852
|
},
|
|
1396
2853
|
"frozenColumnCount": {
|
|
1397
|
-
"
|
|
1398
|
-
"description": "
|
|
2854
|
+
"$ref": "#/definitions/int",
|
|
2855
|
+
"description": "frozenColumnCount",
|
|
1399
2856
|
"artifactType": "XMLProperty",
|
|
2857
|
+
"isViewNode": true,
|
|
1400
2858
|
"metadata": {
|
|
1401
2859
|
"type": "Property"
|
|
1402
2860
|
}
|
|
@@ -1417,6 +2875,38 @@
|
|
|
1417
2875
|
"type": "Property"
|
|
1418
2876
|
}
|
|
1419
2877
|
},
|
|
2878
|
+
"hierarchyQualifier": {
|
|
2879
|
+
"type": "string",
|
|
2880
|
+
"description": "A set of options that can be configured.",
|
|
2881
|
+
"artifactType": "XMLProperty",
|
|
2882
|
+
"metadata": {
|
|
2883
|
+
"type": "Property"
|
|
2884
|
+
}
|
|
2885
|
+
},
|
|
2886
|
+
"ignoredFields": {
|
|
2887
|
+
"type": "string",
|
|
2888
|
+
"description": "Comma-separated value of fields that must be ignored in the OData metadata by the Table building block.\nThe table building block is not going to create built-in columns or offer table personalization for comma-separated value of fields that are provided in the ignoredfields.\nAny column referencing an ignored field is to be removed.",
|
|
2889
|
+
"artifactType": "XMLProperty",
|
|
2890
|
+
"metadata": {
|
|
2891
|
+
"type": "Property"
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
"isMoveToPositionAllowed": {
|
|
2895
|
+
"type": "string",
|
|
2896
|
+
"description": "Defines the extension point to control if a source node can be dropped on a specific parent node.\n",
|
|
2897
|
+
"artifactType": "XMLProperty",
|
|
2898
|
+
"metadata": {
|
|
2899
|
+
"type": "Property"
|
|
2900
|
+
}
|
|
2901
|
+
},
|
|
2902
|
+
"isNodeMovable": {
|
|
2903
|
+
"type": "string",
|
|
2904
|
+
"description": "Defines the extension point to control if a node can be dragged.\n",
|
|
2905
|
+
"artifactType": "XMLProperty",
|
|
2906
|
+
"metadata": {
|
|
2907
|
+
"type": "Property"
|
|
2908
|
+
}
|
|
2909
|
+
},
|
|
1420
2910
|
"isSearchable": {
|
|
1421
2911
|
"type": "boolean",
|
|
1422
2912
|
"description": "Defines whether to display the search action.",
|
|
@@ -1434,14 +2924,7 @@
|
|
|
1434
2924
|
}
|
|
1435
2925
|
},
|
|
1436
2926
|
"personalization": {
|
|
1437
|
-
"
|
|
1438
|
-
{
|
|
1439
|
-
"type": "boolean"
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"type": "string"
|
|
1443
|
-
}
|
|
1444
|
-
],
|
|
2927
|
+
"type": "string",
|
|
1445
2928
|
"description": "Controls which options should be enabled for the table personalization dialog.\nIf it is set to `true`, all possible options for this kind of table are enabled.\nIf it is set to `false`, personalization is disabled.\n\nYou can also provide a more granular control for the personalization by providing a comma-separated list with the options you want to be available.\nAvailable options are:\n - Sort\n - Column\n - Filter\n",
|
|
1446
2929
|
"artifactType": "XMLProperty",
|
|
1447
2930
|
"metadata": {
|
|
@@ -1457,9 +2940,10 @@
|
|
|
1457
2940
|
}
|
|
1458
2941
|
},
|
|
1459
2942
|
"rowCount": {
|
|
1460
|
-
"
|
|
1461
|
-
"description": "
|
|
2943
|
+
"$ref": "#/definitions/int",
|
|
2944
|
+
"description": "rowCount",
|
|
1462
2945
|
"artifactType": "XMLProperty",
|
|
2946
|
+
"isViewNode": true,
|
|
1463
2947
|
"metadata": {
|
|
1464
2948
|
"type": "Property"
|
|
1465
2949
|
}
|
|
@@ -1494,16 +2978,12 @@
|
|
|
1494
2978
|
},
|
|
1495
2979
|
"type": {
|
|
1496
2980
|
"type": "string",
|
|
1497
|
-
"description": "Defines the type of table that will be used by the building block to render the data
|
|
2981
|
+
"description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
|
|
1498
2982
|
"artifactType": "XMLProperty",
|
|
1499
2983
|
"metadata": {
|
|
1500
2984
|
"type": "Property"
|
|
1501
2985
|
},
|
|
1502
|
-
"
|
|
1503
|
-
"GridTable",
|
|
1504
|
-
"ResponsiveTable",
|
|
1505
|
-
"AnalyticalTable"
|
|
1506
|
-
]
|
|
2986
|
+
"const": "TreeTable"
|
|
1507
2987
|
},
|
|
1508
2988
|
"variantManagement": {
|
|
1509
2989
|
"type": "string",
|
|
@@ -1512,11 +2992,7 @@
|
|
|
1512
2992
|
"metadata": {
|
|
1513
2993
|
"type": "Property"
|
|
1514
2994
|
},
|
|
1515
|
-
"
|
|
1516
|
-
"None",
|
|
1517
|
-
"Page",
|
|
1518
|
-
"Control"
|
|
1519
|
-
]
|
|
2995
|
+
"const": "Control"
|
|
1520
2996
|
},
|
|
1521
2997
|
"widthIncludingColumnHeader": {
|
|
1522
2998
|
"type": "boolean",
|
|
@@ -1584,8 +3060,63 @@
|
|
|
1584
3060
|
"additionalProperties": false,
|
|
1585
3061
|
"metadata": {
|
|
1586
3062
|
"path": [],
|
|
1587
|
-
"type": "Control"
|
|
1588
|
-
|
|
3063
|
+
"type": "Control"
|
|
3064
|
+
}
|
|
3065
|
+
},
|
|
3066
|
+
"sap.fe.macros.table.TreeTableCreationOptions": {
|
|
3067
|
+
"description": "Create options for the tree table.",
|
|
3068
|
+
"isViewNode": true,
|
|
3069
|
+
"type": "object",
|
|
3070
|
+
"properties": {
|
|
3071
|
+
"createInPlace": {
|
|
3072
|
+
"type": "boolean",
|
|
3073
|
+
"description": "Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).\nThe default value is 'false' (that is, the new entry is placed as the first child below its parent).\n",
|
|
3074
|
+
"artifactType": "XMLProperty",
|
|
3075
|
+
"metadata": {
|
|
3076
|
+
"type": "Property"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
"isCreateEnabled": {
|
|
3080
|
+
"type": "string",
|
|
3081
|
+
"description": "Defines the extension point to control the enablement of the Create button or Create Menu buttons.\n",
|
|
3082
|
+
"artifactType": "XMLProperty",
|
|
3083
|
+
"metadata": {
|
|
3084
|
+
"type": "Property"
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
"name": {
|
|
3088
|
+
"type": "string",
|
|
3089
|
+
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are `NewPage` or `Inline`.\n\nNewPage - the created document is shown in a new page, depending on whether metadata 'Sync', 'Async' or 'Deferred' is used.\nInline - the creation is done inline.\n\nIf not set with any value:\nif navigation is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.\n",
|
|
3090
|
+
"artifactType": "XMLProperty",
|
|
3091
|
+
"metadata": {
|
|
3092
|
+
"type": "Property"
|
|
3093
|
+
},
|
|
3094
|
+
"enum": [
|
|
3095
|
+
"Inline",
|
|
3096
|
+
"NewPage"
|
|
3097
|
+
]
|
|
3098
|
+
},
|
|
3099
|
+
"nodeType": {
|
|
3100
|
+
"type": "object",
|
|
3101
|
+
"description": "Defines the nodes to be added on the custom create.\nThis object must have the following properties:\npropertyName: the name of the property on the page entity set used to categorize the node type to be created within the hierarchy\nvalues: an array of key and label that define a value of the property defined by the propertyName key and its label\n",
|
|
3102
|
+
"artifactType": "XMLProperty",
|
|
3103
|
+
"metadata": {
|
|
3104
|
+
"type": "Property"
|
|
3105
|
+
}
|
|
3106
|
+
},
|
|
3107
|
+
"id": {
|
|
3108
|
+
"type": "string",
|
|
3109
|
+
"description": "Unique id of control",
|
|
3110
|
+
"artifactType": "XMLProperty",
|
|
3111
|
+
"metadata": {
|
|
3112
|
+
"type": "Property"
|
|
3113
|
+
}
|
|
3114
|
+
}
|
|
3115
|
+
},
|
|
3116
|
+
"additionalProperties": false,
|
|
3117
|
+
"metadata": {
|
|
3118
|
+
"path": [],
|
|
3119
|
+
"type": "Control"
|
|
1589
3120
|
}
|
|
1590
3121
|
},
|
|
1591
3122
|
"sap.fe.macros.ActionGroup": {
|
|
@@ -1599,7 +3130,8 @@
|
|
|
1599
3130
|
"artifactType": "XMLProperty",
|
|
1600
3131
|
"metadata": {
|
|
1601
3132
|
"type": "Property"
|
|
1602
|
-
}
|
|
3133
|
+
},
|
|
3134
|
+
"i18nClassification": "BUT: Text of the action group button"
|
|
1603
3135
|
},
|
|
1604
3136
|
"placement": {
|
|
1605
3137
|
"type": "string",
|
|
@@ -1786,44 +3318,34 @@
|
|
|
1786
3318
|
"type": "Control"
|
|
1787
3319
|
}
|
|
1788
3320
|
},
|
|
1789
|
-
"sap.fe.macros.
|
|
1790
|
-
"description": "
|
|
3321
|
+
"sap.fe.macros.controls.section.ISingleSectionContributor.ConsumerData": {
|
|
3322
|
+
"description": "Definition of data consumer by section from single control",
|
|
1791
3323
|
"isViewNode": true,
|
|
1792
3324
|
"type": "object",
|
|
1793
3325
|
"properties": {
|
|
1794
|
-
"
|
|
1795
|
-
"type": "boolean",
|
|
1796
|
-
"description": "Specifies if the new entry should be created at the top or bottom of a table in case of creationMode 'Inline'\nThe default value is 'false'\n",
|
|
1797
|
-
"artifactType": "XMLProperty",
|
|
1798
|
-
"metadata": {
|
|
1799
|
-
"type": "Property"
|
|
1800
|
-
}
|
|
1801
|
-
},
|
|
1802
|
-
"inlineCreationRowsHiddenInEditMode": {
|
|
1803
|
-
"type": "boolean",
|
|
1804
|
-
"description": "Specifies if the new entry should be hidden in case of creationMode 'InlineCreationRows'. This only applies to responsive tables.\nThe default value is 'false'\n",
|
|
1805
|
-
"artifactType": "XMLProperty",
|
|
1806
|
-
"metadata": {
|
|
1807
|
-
"type": "Property"
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
|
-
"name": {
|
|
3326
|
+
"title": {
|
|
1811
3327
|
"type": "string",
|
|
1812
|
-
"description": "Defines the
|
|
3328
|
+
"description": "Defines the title to be used by the single control.",
|
|
1813
3329
|
"artifactType": "XMLProperty",
|
|
1814
3330
|
"metadata": {
|
|
1815
3331
|
"type": "Property"
|
|
1816
|
-
}
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
3332
|
+
}
|
|
3333
|
+
}
|
|
3334
|
+
},
|
|
3335
|
+
"additionalProperties": false,
|
|
3336
|
+
"metadata": {
|
|
3337
|
+
"path": [],
|
|
3338
|
+
"type": "Control"
|
|
3339
|
+
}
|
|
3340
|
+
},
|
|
3341
|
+
"sap.fe.macros.controls.section.ISingleSectionContributor.ProviderData": {
|
|
3342
|
+
"description": "Definition of data provided by section to single control",
|
|
3343
|
+
"isViewNode": true,
|
|
3344
|
+
"type": "object",
|
|
3345
|
+
"properties": {
|
|
3346
|
+
"title": {
|
|
1825
3347
|
"type": "string",
|
|
1826
|
-
"description": "
|
|
3348
|
+
"description": "Defines the title to be used by the section.",
|
|
1827
3349
|
"artifactType": "XMLProperty",
|
|
1828
3350
|
"metadata": {
|
|
1829
3351
|
"type": "Property"
|