@sap/ux-specification 1.136.17 → 1.136.18
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 +40 -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-ListReportNew.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 +320 -315
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +202 -7
- package/dist/schemas/v4/ApplicationV4.json +14 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +50 -19
- package/dist/schemas/v4/ObjectPageConfig.json +112 -717
- package/dist/specification/package.json +8 -8
- package/dist/specification/scripts/generate-validity-report.js +1 -1
- package/dist/specification/scripts/generate-validity-report.js.map +1 -1
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +15 -0
- package/dist/specification/scripts/macros/corrections.js.map +1 -1
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +23 -10
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +39 -3
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts +8 -0
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
- package/dist/specification/src/ftfs/ftfs.js +1 -0
- package/dist/specification/src/ftfs/ftfs.js.map +1 -1
- package/dist/specification/src/ftfs/index.d.ts +1 -1
- package/dist/specification/src/ftfs/index.d.ts.map +1 -1
- package/dist/specification/src/ftfs/index.js +2 -1
- package/dist/specification/src/ftfs/index.js.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js +3 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts +91 -0
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js +139 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts +95 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js +210 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +58 -22
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js +23 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +0 -8
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +0 -15
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.d.ts +4 -0
- package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.js +4 -0
- package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts +38 -0
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js +3 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js +50 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js +46 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts +26 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js +77 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js +43 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js +68 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts +19 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js +48 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts +6 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js +14 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js.map +1 -0
- package/dist/specification/src/sync/common/i18n.json +28 -0
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +2 -0
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- package/dist/specification/src/sync/common/rules.d.ts +1 -1
- package/dist/specification/src/sync/common/rules.js +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts +4 -5
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.js +29 -20
- package/dist/specification/src/sync/v2/export/controls/Fragment.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 +3 -2
- package/dist/specification/src/sync/v2/export/export.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.js +48 -19
- package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts +2 -0
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +17 -6
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts +54 -6
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.js +106 -12
- package/dist/specification/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +4 -4
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts +12 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js +167 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +3 -3
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +59 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +582 -7
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +29 -6
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
- package/dist/specification/src/sync/v2/types.d.ts +2 -0
- package/dist/specification/src/sync/v2/types.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/types.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +25 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +28 -4
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +1 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +10 -0
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -5
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.js +2 -7
- package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +9 -3
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +10 -6
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +13 -51
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +97 -238
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +6 -27
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +11 -38
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +3 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +8 -5
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.js +2 -4
- package/dist/specification/src/sync/v4/export/factory.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +212 -46
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/app.d.ts +11 -0
- package/dist/specification/src/sync/v4/generate/app.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/app.js +31 -0
- package/dist/specification/src/sync/v4/generate/app.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +13 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +74 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +4 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +29 -27
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +12 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +32 -13
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +103 -78
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts +7 -4
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js +34 -17
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts +1 -2
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +136 -95
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js +20 -0
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.js +4 -23
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js +2 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +3 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +1 -294
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +0 -753
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js +10 -4
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.d.ts +19 -0
- package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.js +34 -0
- package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +22 -2
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +239 -41
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/specification/test/test-utils/utils.d.ts +1 -0
- package/dist/specification/test/test-utils/utils.d.ts.map +1 -1
- package/dist/specification/test/test-utils/utils.js +11 -0
- package/dist/specification/test/test-utils/utils.js.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +2 -2
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.js +6 -6
- package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -1
- package/dist/templates/AnalyticalTableColumnsExtension.xml +3 -3
- package/dist/templates/GridTableColumnsExtension.xml +3 -3
- package/dist/templates/ResponsiveTableColumnsExtension.xml +2 -2
- package/dist/templates/TreeTableColumnsExtension.xml +4 -4
- package/dist/templates/fragment.xml +3 -3
- package/dist/templates/view.xml +3 -3
- package/dist/types/src/apiTypes.d.ts +15 -5
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js +1 -0
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +25 -11
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +17 -10
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/v4/application.d.ts +15 -0
- package/dist/types/src/v4/application.d.ts.map +1 -1
- package/dist/types/src/v4/application.js +10 -0
- package/dist/types/src/v4/application.js.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts +91 -250
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
- package/package.json +8 -8
|
@@ -677,34 +677,42 @@
|
|
|
677
677
|
"type": "object",
|
|
678
678
|
"properties": {
|
|
679
679
|
"table": {
|
|
680
|
-
"
|
|
681
|
-
{
|
|
682
|
-
"$ref": "#/definitions/ObjectPageAnalyticalTableV4"
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"$ref": "#/definitions/ObjectPageGridTableV4"
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"$ref": "#/definitions/ObjectPageResponsiveTableV4"
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"$ref": "#/definitions/ObjectPageTreeTableV4"
|
|
692
|
-
}
|
|
693
|
-
]
|
|
680
|
+
"$ref": "#/definitions/ObjectPageTable"
|
|
694
681
|
}
|
|
695
682
|
},
|
|
696
683
|
"additionalProperties": false
|
|
697
684
|
},
|
|
698
|
-
"
|
|
685
|
+
"ObjectPageTable": {
|
|
699
686
|
"description": "Table",
|
|
700
687
|
"isViewNode": true,
|
|
701
|
-
"controlProperty": "type",
|
|
702
688
|
"type": "object",
|
|
703
689
|
"properties": {
|
|
704
690
|
"type": {
|
|
691
|
+
"$ref": "#/definitions/TableTypeV4",
|
|
705
692
|
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
693
|
+
"artifactType": "Manifest"
|
|
694
|
+
},
|
|
695
|
+
"rowCountMode": {
|
|
696
|
+
"$ref": "#/definitions/RowCountMode",
|
|
697
|
+
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): 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 - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
698
|
+
"artifactType": "Manifest",
|
|
699
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode"
|
|
700
|
+
},
|
|
701
|
+
"rowCount": {
|
|
702
|
+
"description": "Number of rows to be displayed in the table.",
|
|
703
|
+
"minimum": 0,
|
|
704
|
+
"type": "number",
|
|
705
|
+
"artifactType": "Manifest"
|
|
706
|
+
},
|
|
707
|
+
"popinLayout": {
|
|
708
|
+
"description": "Defines the layout options of the table popins. A popin layout defined at the table level takes precedence over a popin layout defined at the application level.",
|
|
709
|
+
"descriptionSrcURL": "https://help.sap.com/docs/SAPUI5/b1cda5dc7a7644eb886bc6ac04c0b438/7f844f1021cd4791b8f7408eac7c1cec.html",
|
|
710
|
+
"enum": [
|
|
711
|
+
"Block",
|
|
712
|
+
"GridLarge",
|
|
713
|
+
"GridSmall"
|
|
714
|
+
],
|
|
706
715
|
"type": "string",
|
|
707
|
-
"const": "AnalyticalTable",
|
|
708
716
|
"artifactType": "Manifest"
|
|
709
717
|
},
|
|
710
718
|
"analyticalConfiguration": {
|
|
@@ -725,6 +733,12 @@
|
|
|
725
733
|
"$ref": "#/definitions/ObjectPageToolBar",
|
|
726
734
|
"description": "Tool Bar"
|
|
727
735
|
},
|
|
736
|
+
"creationMode": {
|
|
737
|
+
"$ref": "#/definitions/TableCreationModeOP",
|
|
738
|
+
"description": "Defines the page behavior when a new record is created.\nNote: Not available for AnalyticalTable.",
|
|
739
|
+
"artifactType": "Manifest",
|
|
740
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.fe.macros.Table%23controlProperties"
|
|
741
|
+
},
|
|
728
742
|
"personalization": {
|
|
729
743
|
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
730
744
|
"anyOf": [
|
|
@@ -826,21 +840,29 @@
|
|
|
826
840
|
"type": "boolean",
|
|
827
841
|
"artifactType": "Manifest",
|
|
828
842
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
829
|
-
},
|
|
830
|
-
"rowCountMode": {
|
|
831
|
-
"$ref": "#/definitions/RowCountMode",
|
|
832
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): 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 - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
833
|
-
"artifactType": "Manifest"
|
|
834
|
-
},
|
|
835
|
-
"rowCount": {
|
|
836
|
-
"description": "Number of rows to be displayed in the table.",
|
|
837
|
-
"minimum": 0,
|
|
838
|
-
"type": "number",
|
|
839
|
-
"artifactType": "Manifest"
|
|
840
843
|
}
|
|
841
844
|
},
|
|
842
845
|
"additionalProperties": false
|
|
843
846
|
},
|
|
847
|
+
"TableTypeV4": {
|
|
848
|
+
"enum": [
|
|
849
|
+
"AnalyticalTable",
|
|
850
|
+
"GridTable",
|
|
851
|
+
"ResponsiveTable",
|
|
852
|
+
"TreeTable"
|
|
853
|
+
],
|
|
854
|
+
"type": "string"
|
|
855
|
+
},
|
|
856
|
+
"RowCountMode": {
|
|
857
|
+
"artifactType": "Manifest",
|
|
858
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode",
|
|
859
|
+
"enum": [
|
|
860
|
+
"Auto",
|
|
861
|
+
"Fixed",
|
|
862
|
+
"Interactive"
|
|
863
|
+
],
|
|
864
|
+
"type": "string"
|
|
865
|
+
},
|
|
844
866
|
"ObjectPageAnalyticalConfiguration": {
|
|
845
867
|
"type": "object",
|
|
846
868
|
"properties": {
|
|
@@ -1209,6 +1231,68 @@
|
|
|
1209
1231
|
},
|
|
1210
1232
|
"additionalProperties": false
|
|
1211
1233
|
},
|
|
1234
|
+
"TableCreationModeOP": {
|
|
1235
|
+
"description": "Creation mode configuration for Object Page tables.\nVisibility of specific properties is controlled by decorators in the specification package based on table type and creation mode.",
|
|
1236
|
+
"type": "object",
|
|
1237
|
+
"properties": {
|
|
1238
|
+
"name": {
|
|
1239
|
+
"$ref": "#/definitions/TableCreationModeType",
|
|
1240
|
+
"description": "Defines the creation mode to be used by the table.\n\nFor tree tables, allowed values are 'NewPage', 'Inline', or 'CreationDialog'.\nFor responsive and grid tables, allowed values are 'NewPage', 'Inline', 'InlineCreationRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationRows: The creation is performed inline with an empty row (not available for tree tables)\n- External: The creation is performed in a different application which is specified using the `outbound` parameter (not available for tree tables)\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1241
|
+
"artifactType": "Manifest",
|
|
1242
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1243
|
+
},
|
|
1244
|
+
"createAtEnd": {
|
|
1245
|
+
"description": "Specifies if the new entry should be created at the top or bottom of a table when `creationMode` is set to `Inline`.\nThe default value is `false`.",
|
|
1246
|
+
"type": "boolean",
|
|
1247
|
+
"artifactType": "Manifest",
|
|
1248
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1249
|
+
},
|
|
1250
|
+
"inlineCreationRowsHiddenInEditMode": {
|
|
1251
|
+
"description": "Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.\nThe default value is `false`.",
|
|
1252
|
+
"type": "boolean",
|
|
1253
|
+
"artifactType": "Manifest",
|
|
1254
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1255
|
+
},
|
|
1256
|
+
"createInPlace": {
|
|
1257
|
+
"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`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
1258
|
+
"type": "boolean",
|
|
1259
|
+
"artifactType": "Manifest",
|
|
1260
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
1261
|
+
},
|
|
1262
|
+
"isCreateEnabled": {
|
|
1263
|
+
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"artifactType": "Manifest",
|
|
1266
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
1267
|
+
},
|
|
1268
|
+
"creationFields": {
|
|
1269
|
+
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
1270
|
+
"type": "array",
|
|
1271
|
+
"items": {
|
|
1272
|
+
"type": "string"
|
|
1273
|
+
},
|
|
1274
|
+
"artifactType": "Manifest",
|
|
1275
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
1276
|
+
},
|
|
1277
|
+
"outbound": {
|
|
1278
|
+
"description": "The navigation target where the document is created when `creationMode` is set to `External`.",
|
|
1279
|
+
"type": "string",
|
|
1280
|
+
"artifactType": "Manifest",
|
|
1281
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
"additionalProperties": false
|
|
1285
|
+
},
|
|
1286
|
+
"TableCreationModeType": {
|
|
1287
|
+
"enum": [
|
|
1288
|
+
"CreationDialog",
|
|
1289
|
+
"External",
|
|
1290
|
+
"Inline",
|
|
1291
|
+
"InlineCreationRows",
|
|
1292
|
+
"NewPage"
|
|
1293
|
+
],
|
|
1294
|
+
"type": "string"
|
|
1295
|
+
},
|
|
1212
1296
|
"PersonalizationTypeOP": {
|
|
1213
1297
|
"type": "object",
|
|
1214
1298
|
"properties": {
|
|
@@ -1471,695 +1555,6 @@
|
|
|
1471
1555
|
],
|
|
1472
1556
|
"type": "string"
|
|
1473
1557
|
},
|
|
1474
|
-
"RowCountMode": {
|
|
1475
|
-
"artifactType": "Manifest",
|
|
1476
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode",
|
|
1477
|
-
"enum": [
|
|
1478
|
-
"Auto",
|
|
1479
|
-
"Fixed",
|
|
1480
|
-
"Interactive"
|
|
1481
|
-
],
|
|
1482
|
-
"type": "string"
|
|
1483
|
-
},
|
|
1484
|
-
"ObjectPageGridTableV4": {
|
|
1485
|
-
"description": "Table",
|
|
1486
|
-
"isViewNode": true,
|
|
1487
|
-
"controlProperty": "type",
|
|
1488
|
-
"type": "object",
|
|
1489
|
-
"properties": {
|
|
1490
|
-
"type": {
|
|
1491
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
1492
|
-
"type": "string",
|
|
1493
|
-
"const": "GridTable",
|
|
1494
|
-
"artifactType": "Manifest"
|
|
1495
|
-
},
|
|
1496
|
-
"creationMode": {
|
|
1497
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
1498
|
-
"anyOf": [
|
|
1499
|
-
{
|
|
1500
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTable"
|
|
1501
|
-
},
|
|
1502
|
-
{
|
|
1503
|
-
"$ref": "#/definitions/TableCreationModeInlineCreationsRowsOPGridTable"
|
|
1504
|
-
},
|
|
1505
|
-
{
|
|
1506
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTable"
|
|
1507
|
-
},
|
|
1508
|
-
{
|
|
1509
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTable"
|
|
1510
|
-
},
|
|
1511
|
-
{
|
|
1512
|
-
"$ref": "#/definitions/TableCreationModeExternalOPTable"
|
|
1513
|
-
}
|
|
1514
|
-
]
|
|
1515
|
-
},
|
|
1516
|
-
"enableFullScreen": {
|
|
1517
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
1518
|
-
"type": "boolean",
|
|
1519
|
-
"artifactType": "Manifest"
|
|
1520
|
-
},
|
|
1521
|
-
"enablePaste": {
|
|
1522
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
1523
|
-
"type": "boolean",
|
|
1524
|
-
"artifactType": "Manifest"
|
|
1525
|
-
},
|
|
1526
|
-
"toolBar": {
|
|
1527
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
1528
|
-
"description": "Tool Bar"
|
|
1529
|
-
},
|
|
1530
|
-
"personalization": {
|
|
1531
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
1532
|
-
"anyOf": [
|
|
1533
|
-
{
|
|
1534
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
1535
|
-
},
|
|
1536
|
-
{
|
|
1537
|
-
"type": "boolean"
|
|
1538
|
-
}
|
|
1539
|
-
]
|
|
1540
|
-
},
|
|
1541
|
-
"quickVariantSelection": {
|
|
1542
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
1543
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
1544
|
-
"artifactType": "Manifest"
|
|
1545
|
-
},
|
|
1546
|
-
"columns": {
|
|
1547
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
1548
|
-
},
|
|
1549
|
-
"enableMassEdit": {
|
|
1550
|
-
"artifactType": "Manifest",
|
|
1551
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1552
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
1553
|
-
"anyOf": [
|
|
1554
|
-
{
|
|
1555
|
-
"type": "object",
|
|
1556
|
-
"properties": {
|
|
1557
|
-
"visibleFields": {
|
|
1558
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
1559
|
-
"artifactType": "Manifest",
|
|
1560
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1561
|
-
"type": "array",
|
|
1562
|
-
"items": {
|
|
1563
|
-
"type": "string"
|
|
1564
|
-
}
|
|
1565
|
-
},
|
|
1566
|
-
"ignoredFields": {
|
|
1567
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
1568
|
-
"artifactType": "Manifest",
|
|
1569
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1570
|
-
"type": "array",
|
|
1571
|
-
"items": {
|
|
1572
|
-
"type": "string"
|
|
1573
|
-
}
|
|
1574
|
-
},
|
|
1575
|
-
"operationGroupingMode": {
|
|
1576
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
1577
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
1578
|
-
}
|
|
1579
|
-
},
|
|
1580
|
-
"additionalProperties": false
|
|
1581
|
-
},
|
|
1582
|
-
{
|
|
1583
|
-
"type": "boolean"
|
|
1584
|
-
}
|
|
1585
|
-
]
|
|
1586
|
-
},
|
|
1587
|
-
"selectionMode": {
|
|
1588
|
-
"$ref": "#/definitions/SelectionMode",
|
|
1589
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
1590
|
-
"artifactType": "Manifest"
|
|
1591
|
-
},
|
|
1592
|
-
"selectAll": {
|
|
1593
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
1594
|
-
"type": "boolean",
|
|
1595
|
-
"artifactType": "Manifest"
|
|
1596
|
-
},
|
|
1597
|
-
"selectionLimit": {
|
|
1598
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
1599
|
-
"type": "number",
|
|
1600
|
-
"artifactType": "Manifest"
|
|
1601
|
-
},
|
|
1602
|
-
"enableExport": {
|
|
1603
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
1604
|
-
"type": "boolean",
|
|
1605
|
-
"artifactType": "Manifest",
|
|
1606
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
1607
|
-
},
|
|
1608
|
-
"condensedTableLayout": {
|
|
1609
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
1610
|
-
"type": "boolean",
|
|
1611
|
-
"artifactType": "Manifest",
|
|
1612
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
1613
|
-
},
|
|
1614
|
-
"hierarchyQualifier": {
|
|
1615
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
1616
|
-
"type": "string",
|
|
1617
|
-
"artifactType": "Manifest",
|
|
1618
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
1619
|
-
},
|
|
1620
|
-
"widthIncludingColumnHeader": {
|
|
1621
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
1622
|
-
"type": "boolean",
|
|
1623
|
-
"artifactType": "Manifest",
|
|
1624
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1625
|
-
},
|
|
1626
|
-
"disableCopyToClipboard": {
|
|
1627
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
1628
|
-
"type": "boolean",
|
|
1629
|
-
"artifactType": "Manifest",
|
|
1630
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1631
|
-
},
|
|
1632
|
-
"rowCountMode": {
|
|
1633
|
-
"$ref": "#/definitions/RowCountMode",
|
|
1634
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): 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 - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
1635
|
-
"artifactType": "Manifest"
|
|
1636
|
-
},
|
|
1637
|
-
"rowCount": {
|
|
1638
|
-
"description": "Number of rows to be displayed in the table.",
|
|
1639
|
-
"minimum": 0,
|
|
1640
|
-
"type": "number",
|
|
1641
|
-
"artifactType": "Manifest"
|
|
1642
|
-
}
|
|
1643
|
-
},
|
|
1644
|
-
"additionalProperties": false
|
|
1645
|
-
},
|
|
1646
|
-
"TableCreationModeInlineOPTable": {
|
|
1647
|
-
"description": "Inline creation mode",
|
|
1648
|
-
"controlProperty": "name",
|
|
1649
|
-
"type": "object",
|
|
1650
|
-
"properties": {
|
|
1651
|
-
"name": {
|
|
1652
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1653
|
-
"type": "string",
|
|
1654
|
-
"const": "Inline",
|
|
1655
|
-
"artifactType": "Manifest",
|
|
1656
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1657
|
-
},
|
|
1658
|
-
"createAtEnd": {
|
|
1659
|
-
"description": "Specifies if the new entry should be created at the top or bottom of a table when `creationMode` is set to `Inline`.\nThe default value is `false`.",
|
|
1660
|
-
"type": "boolean",
|
|
1661
|
-
"artifactType": "Manifest",
|
|
1662
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1663
|
-
}
|
|
1664
|
-
},
|
|
1665
|
-
"additionalProperties": false
|
|
1666
|
-
},
|
|
1667
|
-
"TableCreationModeInlineCreationsRowsOPGridTable": {
|
|
1668
|
-
"description": "InlineCreationsRows creation mode for the grid table",
|
|
1669
|
-
"controlProperty": "name",
|
|
1670
|
-
"type": "object",
|
|
1671
|
-
"properties": {
|
|
1672
|
-
"name": {
|
|
1673
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1674
|
-
"type": "string",
|
|
1675
|
-
"const": "InlineCreationRows",
|
|
1676
|
-
"artifactType": "Manifest",
|
|
1677
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1678
|
-
}
|
|
1679
|
-
},
|
|
1680
|
-
"additionalProperties": false
|
|
1681
|
-
},
|
|
1682
|
-
"TableCreationModeNewPageOPTable": {
|
|
1683
|
-
"description": "NewPage creation mode",
|
|
1684
|
-
"defaultControlProperty": true,
|
|
1685
|
-
"controlProperty": "name",
|
|
1686
|
-
"type": "object",
|
|
1687
|
-
"properties": {
|
|
1688
|
-
"name": {
|
|
1689
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1690
|
-
"type": "string",
|
|
1691
|
-
"const": "NewPage",
|
|
1692
|
-
"artifactType": "Manifest",
|
|
1693
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1694
|
-
}
|
|
1695
|
-
},
|
|
1696
|
-
"additionalProperties": false
|
|
1697
|
-
},
|
|
1698
|
-
"TableCreationModeCreationDialogOPTable": {
|
|
1699
|
-
"description": "CreationDialog creation mode",
|
|
1700
|
-
"controlProperty": "name",
|
|
1701
|
-
"type": "object",
|
|
1702
|
-
"properties": {
|
|
1703
|
-
"name": {
|
|
1704
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1705
|
-
"type": "string",
|
|
1706
|
-
"const": "CreationDialog",
|
|
1707
|
-
"artifactType": "Manifest",
|
|
1708
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1709
|
-
},
|
|
1710
|
-
"creationFields": {
|
|
1711
|
-
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
1712
|
-
"type": "array",
|
|
1713
|
-
"items": {
|
|
1714
|
-
"type": "string"
|
|
1715
|
-
},
|
|
1716
|
-
"artifactType": "Manifest",
|
|
1717
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
1718
|
-
}
|
|
1719
|
-
},
|
|
1720
|
-
"additionalProperties": false
|
|
1721
|
-
},
|
|
1722
|
-
"TableCreationModeExternalOPTable": {
|
|
1723
|
-
"description": "External creation mode",
|
|
1724
|
-
"controlProperty": "name",
|
|
1725
|
-
"type": "object",
|
|
1726
|
-
"properties": {
|
|
1727
|
-
"name": {
|
|
1728
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1729
|
-
"type": "string",
|
|
1730
|
-
"const": "External",
|
|
1731
|
-
"artifactType": "Manifest",
|
|
1732
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1733
|
-
},
|
|
1734
|
-
"outbound": {
|
|
1735
|
-
"description": "The navigation target where the document is created when `creationMode` is set to `External`.",
|
|
1736
|
-
"type": "string",
|
|
1737
|
-
"artifactType": "Manifest",
|
|
1738
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736"
|
|
1739
|
-
}
|
|
1740
|
-
},
|
|
1741
|
-
"additionalProperties": false
|
|
1742
|
-
},
|
|
1743
|
-
"ObjectPageResponsiveTableV4": {
|
|
1744
|
-
"description": "Table",
|
|
1745
|
-
"isViewNode": true,
|
|
1746
|
-
"controlProperty": "type",
|
|
1747
|
-
"defaultControlProperty": true,
|
|
1748
|
-
"type": "object",
|
|
1749
|
-
"properties": {
|
|
1750
|
-
"type": {
|
|
1751
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
1752
|
-
"type": "string",
|
|
1753
|
-
"const": "ResponsiveTable",
|
|
1754
|
-
"artifactType": "Manifest"
|
|
1755
|
-
},
|
|
1756
|
-
"creationMode": {
|
|
1757
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
1758
|
-
"anyOf": [
|
|
1759
|
-
{
|
|
1760
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTable"
|
|
1761
|
-
},
|
|
1762
|
-
{
|
|
1763
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTable"
|
|
1764
|
-
},
|
|
1765
|
-
{
|
|
1766
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTable"
|
|
1767
|
-
},
|
|
1768
|
-
{
|
|
1769
|
-
"$ref": "#/definitions/TableCreationModeExternalOPTable"
|
|
1770
|
-
},
|
|
1771
|
-
{
|
|
1772
|
-
"$ref": "#/definitions/TableCreationModeInlineCreationsRowsOPResponsiveTable"
|
|
1773
|
-
}
|
|
1774
|
-
]
|
|
1775
|
-
},
|
|
1776
|
-
"enableFullScreen": {
|
|
1777
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
1778
|
-
"type": "boolean",
|
|
1779
|
-
"artifactType": "Manifest"
|
|
1780
|
-
},
|
|
1781
|
-
"enablePaste": {
|
|
1782
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
1783
|
-
"type": "boolean",
|
|
1784
|
-
"artifactType": "Manifest"
|
|
1785
|
-
},
|
|
1786
|
-
"toolBar": {
|
|
1787
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
1788
|
-
"description": "Tool Bar"
|
|
1789
|
-
},
|
|
1790
|
-
"personalization": {
|
|
1791
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
1792
|
-
"anyOf": [
|
|
1793
|
-
{
|
|
1794
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
1795
|
-
},
|
|
1796
|
-
{
|
|
1797
|
-
"type": "boolean"
|
|
1798
|
-
}
|
|
1799
|
-
]
|
|
1800
|
-
},
|
|
1801
|
-
"quickVariantSelection": {
|
|
1802
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
1803
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
1804
|
-
"artifactType": "Manifest"
|
|
1805
|
-
},
|
|
1806
|
-
"columns": {
|
|
1807
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
1808
|
-
},
|
|
1809
|
-
"enableMassEdit": {
|
|
1810
|
-
"artifactType": "Manifest",
|
|
1811
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1812
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
1813
|
-
"anyOf": [
|
|
1814
|
-
{
|
|
1815
|
-
"type": "object",
|
|
1816
|
-
"properties": {
|
|
1817
|
-
"visibleFields": {
|
|
1818
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
1819
|
-
"artifactType": "Manifest",
|
|
1820
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1821
|
-
"type": "array",
|
|
1822
|
-
"items": {
|
|
1823
|
-
"type": "string"
|
|
1824
|
-
}
|
|
1825
|
-
},
|
|
1826
|
-
"ignoredFields": {
|
|
1827
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
1828
|
-
"artifactType": "Manifest",
|
|
1829
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1830
|
-
"type": "array",
|
|
1831
|
-
"items": {
|
|
1832
|
-
"type": "string"
|
|
1833
|
-
}
|
|
1834
|
-
},
|
|
1835
|
-
"operationGroupingMode": {
|
|
1836
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
1837
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
1838
|
-
}
|
|
1839
|
-
},
|
|
1840
|
-
"additionalProperties": false
|
|
1841
|
-
},
|
|
1842
|
-
{
|
|
1843
|
-
"type": "boolean"
|
|
1844
|
-
}
|
|
1845
|
-
]
|
|
1846
|
-
},
|
|
1847
|
-
"selectionMode": {
|
|
1848
|
-
"$ref": "#/definitions/SelectionMode",
|
|
1849
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
1850
|
-
"artifactType": "Manifest"
|
|
1851
|
-
},
|
|
1852
|
-
"selectAll": {
|
|
1853
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
1854
|
-
"type": "boolean",
|
|
1855
|
-
"artifactType": "Manifest"
|
|
1856
|
-
},
|
|
1857
|
-
"selectionLimit": {
|
|
1858
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
1859
|
-
"type": "number",
|
|
1860
|
-
"artifactType": "Manifest"
|
|
1861
|
-
},
|
|
1862
|
-
"enableExport": {
|
|
1863
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
1864
|
-
"type": "boolean",
|
|
1865
|
-
"artifactType": "Manifest",
|
|
1866
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
1867
|
-
},
|
|
1868
|
-
"condensedTableLayout": {
|
|
1869
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
1870
|
-
"type": "boolean",
|
|
1871
|
-
"artifactType": "Manifest",
|
|
1872
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
1873
|
-
},
|
|
1874
|
-
"hierarchyQualifier": {
|
|
1875
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
1876
|
-
"type": "string",
|
|
1877
|
-
"artifactType": "Manifest",
|
|
1878
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
1879
|
-
},
|
|
1880
|
-
"widthIncludingColumnHeader": {
|
|
1881
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
1882
|
-
"type": "boolean",
|
|
1883
|
-
"artifactType": "Manifest",
|
|
1884
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1885
|
-
},
|
|
1886
|
-
"disableCopyToClipboard": {
|
|
1887
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
1888
|
-
"type": "boolean",
|
|
1889
|
-
"artifactType": "Manifest",
|
|
1890
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1891
|
-
}
|
|
1892
|
-
},
|
|
1893
|
-
"additionalProperties": false
|
|
1894
|
-
},
|
|
1895
|
-
"TableCreationModeInlineCreationsRowsOPResponsiveTable": {
|
|
1896
|
-
"description": "InlineCreationsRows creation mode for the responsive table",
|
|
1897
|
-
"controlProperty": "name",
|
|
1898
|
-
"type": "object",
|
|
1899
|
-
"properties": {
|
|
1900
|
-
"name": {
|
|
1901
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1902
|
-
"type": "string",
|
|
1903
|
-
"const": "InlineCreationRows",
|
|
1904
|
-
"artifactType": "Manifest",
|
|
1905
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1906
|
-
},
|
|
1907
|
-
"inlineCreationRowsHiddenInEditMode": {
|
|
1908
|
-
"description": "Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.\nThe default value is `false`.",
|
|
1909
|
-
"type": "boolean",
|
|
1910
|
-
"artifactType": "Manifest",
|
|
1911
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1912
|
-
}
|
|
1913
|
-
},
|
|
1914
|
-
"additionalProperties": false
|
|
1915
|
-
},
|
|
1916
|
-
"ObjectPageTreeTableV4": {
|
|
1917
|
-
"description": "Table",
|
|
1918
|
-
"isViewNode": true,
|
|
1919
|
-
"controlProperty": "type",
|
|
1920
|
-
"type": "object",
|
|
1921
|
-
"properties": {
|
|
1922
|
-
"type": {
|
|
1923
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
1924
|
-
"type": "string",
|
|
1925
|
-
"const": "TreeTable",
|
|
1926
|
-
"artifactType": "Manifest"
|
|
1927
|
-
},
|
|
1928
|
-
"creationMode": {
|
|
1929
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
1930
|
-
"anyOf": [
|
|
1931
|
-
{
|
|
1932
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTreeTable"
|
|
1933
|
-
},
|
|
1934
|
-
{
|
|
1935
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTreeTable"
|
|
1936
|
-
},
|
|
1937
|
-
{
|
|
1938
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTreeTable"
|
|
1939
|
-
}
|
|
1940
|
-
]
|
|
1941
|
-
},
|
|
1942
|
-
"enableFullScreen": {
|
|
1943
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
1944
|
-
"type": "boolean",
|
|
1945
|
-
"artifactType": "Manifest"
|
|
1946
|
-
},
|
|
1947
|
-
"enablePaste": {
|
|
1948
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
1949
|
-
"type": "boolean",
|
|
1950
|
-
"artifactType": "Manifest"
|
|
1951
|
-
},
|
|
1952
|
-
"toolBar": {
|
|
1953
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
1954
|
-
"description": "Tool Bar"
|
|
1955
|
-
},
|
|
1956
|
-
"personalization": {
|
|
1957
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
1958
|
-
"anyOf": [
|
|
1959
|
-
{
|
|
1960
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
1961
|
-
},
|
|
1962
|
-
{
|
|
1963
|
-
"type": "boolean"
|
|
1964
|
-
}
|
|
1965
|
-
]
|
|
1966
|
-
},
|
|
1967
|
-
"quickVariantSelection": {
|
|
1968
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
1969
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
1970
|
-
"artifactType": "Manifest"
|
|
1971
|
-
},
|
|
1972
|
-
"columns": {
|
|
1973
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
1974
|
-
},
|
|
1975
|
-
"enableMassEdit": {
|
|
1976
|
-
"artifactType": "Manifest",
|
|
1977
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1978
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
1979
|
-
"anyOf": [
|
|
1980
|
-
{
|
|
1981
|
-
"type": "object",
|
|
1982
|
-
"properties": {
|
|
1983
|
-
"visibleFields": {
|
|
1984
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
1985
|
-
"artifactType": "Manifest",
|
|
1986
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1987
|
-
"type": "array",
|
|
1988
|
-
"items": {
|
|
1989
|
-
"type": "string"
|
|
1990
|
-
}
|
|
1991
|
-
},
|
|
1992
|
-
"ignoredFields": {
|
|
1993
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
1994
|
-
"artifactType": "Manifest",
|
|
1995
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1996
|
-
"type": "array",
|
|
1997
|
-
"items": {
|
|
1998
|
-
"type": "string"
|
|
1999
|
-
}
|
|
2000
|
-
},
|
|
2001
|
-
"operationGroupingMode": {
|
|
2002
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
2003
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
2004
|
-
}
|
|
2005
|
-
},
|
|
2006
|
-
"additionalProperties": false
|
|
2007
|
-
},
|
|
2008
|
-
{
|
|
2009
|
-
"type": "boolean"
|
|
2010
|
-
}
|
|
2011
|
-
]
|
|
2012
|
-
},
|
|
2013
|
-
"selectionMode": {
|
|
2014
|
-
"$ref": "#/definitions/SelectionMode",
|
|
2015
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
2016
|
-
"artifactType": "Manifest"
|
|
2017
|
-
},
|
|
2018
|
-
"selectAll": {
|
|
2019
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
2020
|
-
"type": "boolean",
|
|
2021
|
-
"artifactType": "Manifest"
|
|
2022
|
-
},
|
|
2023
|
-
"selectionLimit": {
|
|
2024
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
2025
|
-
"type": "number",
|
|
2026
|
-
"artifactType": "Manifest"
|
|
2027
|
-
},
|
|
2028
|
-
"enableExport": {
|
|
2029
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
2030
|
-
"type": "boolean",
|
|
2031
|
-
"artifactType": "Manifest",
|
|
2032
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
2033
|
-
},
|
|
2034
|
-
"condensedTableLayout": {
|
|
2035
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
2036
|
-
"type": "boolean",
|
|
2037
|
-
"artifactType": "Manifest",
|
|
2038
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
2039
|
-
},
|
|
2040
|
-
"hierarchyQualifier": {
|
|
2041
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
2042
|
-
"type": "string",
|
|
2043
|
-
"artifactType": "Manifest",
|
|
2044
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
2045
|
-
},
|
|
2046
|
-
"widthIncludingColumnHeader": {
|
|
2047
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
2048
|
-
"type": "boolean",
|
|
2049
|
-
"artifactType": "Manifest",
|
|
2050
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2051
|
-
},
|
|
2052
|
-
"disableCopyToClipboard": {
|
|
2053
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
2054
|
-
"type": "boolean",
|
|
2055
|
-
"artifactType": "Manifest",
|
|
2056
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2057
|
-
},
|
|
2058
|
-
"rowCountMode": {
|
|
2059
|
-
"$ref": "#/definitions/RowCountMode",
|
|
2060
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): 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 - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
2061
|
-
"artifactType": "Manifest"
|
|
2062
|
-
},
|
|
2063
|
-
"rowCount": {
|
|
2064
|
-
"description": "Number of rows to be displayed in the table.",
|
|
2065
|
-
"minimum": 0,
|
|
2066
|
-
"type": "number",
|
|
2067
|
-
"artifactType": "Manifest"
|
|
2068
|
-
}
|
|
2069
|
-
},
|
|
2070
|
-
"additionalProperties": false
|
|
2071
|
-
},
|
|
2072
|
-
"TableCreationModeNewPageOPTreeTable": {
|
|
2073
|
-
"description": "NewPage creation mode for TreeTable",
|
|
2074
|
-
"defaultControlProperty": true,
|
|
2075
|
-
"controlProperty": "name",
|
|
2076
|
-
"type": "object",
|
|
2077
|
-
"properties": {
|
|
2078
|
-
"name": {
|
|
2079
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in a table. There is a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise, it is 'Inline'.",
|
|
2080
|
-
"type": "string",
|
|
2081
|
-
"const": "NewPage",
|
|
2082
|
-
"artifactType": "Manifest",
|
|
2083
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2084
|
-
},
|
|
2085
|
-
"createInPlace": {
|
|
2086
|
-
"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`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2087
|
-
"type": "boolean",
|
|
2088
|
-
"artifactType": "Manifest",
|
|
2089
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2090
|
-
},
|
|
2091
|
-
"isCreateEnabled": {
|
|
2092
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2093
|
-
"type": "string",
|
|
2094
|
-
"artifactType": "Manifest",
|
|
2095
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2096
|
-
}
|
|
2097
|
-
},
|
|
2098
|
-
"additionalProperties": false
|
|
2099
|
-
},
|
|
2100
|
-
"TableCreationModeInlineOPTreeTable": {
|
|
2101
|
-
"description": "Inline creation mode for TreeTable",
|
|
2102
|
-
"controlProperty": "name",
|
|
2103
|
-
"type": "object",
|
|
2104
|
-
"properties": {
|
|
2105
|
-
"name": {
|
|
2106
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
2107
|
-
"type": "string",
|
|
2108
|
-
"const": "Inline",
|
|
2109
|
-
"artifactType": "Manifest",
|
|
2110
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2111
|
-
},
|
|
2112
|
-
"createInPlace": {
|
|
2113
|
-
"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`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2114
|
-
"type": "boolean",
|
|
2115
|
-
"artifactType": "Manifest",
|
|
2116
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2117
|
-
},
|
|
2118
|
-
"isCreateEnabled": {
|
|
2119
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2120
|
-
"type": "string",
|
|
2121
|
-
"artifactType": "Manifest",
|
|
2122
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2123
|
-
}
|
|
2124
|
-
},
|
|
2125
|
-
"additionalProperties": false
|
|
2126
|
-
},
|
|
2127
|
-
"TableCreationModeCreationDialogOPTreeTable": {
|
|
2128
|
-
"description": "CreationDialog creation mode for TreeTable",
|
|
2129
|
-
"controlProperty": "name",
|
|
2130
|
-
"type": "object",
|
|
2131
|
-
"properties": {
|
|
2132
|
-
"name": {
|
|
2133
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
2134
|
-
"type": "string",
|
|
2135
|
-
"const": "CreationDialog",
|
|
2136
|
-
"artifactType": "Manifest",
|
|
2137
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2138
|
-
},
|
|
2139
|
-
"creationFields": {
|
|
2140
|
-
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
2141
|
-
"type": "array",
|
|
2142
|
-
"items": {
|
|
2143
|
-
"type": "string"
|
|
2144
|
-
},
|
|
2145
|
-
"artifactType": "Manifest",
|
|
2146
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
2147
|
-
},
|
|
2148
|
-
"createInPlace": {
|
|
2149
|
-
"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`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2150
|
-
"type": "boolean",
|
|
2151
|
-
"artifactType": "Manifest",
|
|
2152
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2153
|
-
},
|
|
2154
|
-
"isCreateEnabled": {
|
|
2155
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2156
|
-
"type": "string",
|
|
2157
|
-
"artifactType": "Manifest",
|
|
2158
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2159
|
-
}
|
|
2160
|
-
},
|
|
2161
|
-
"additionalProperties": false
|
|
2162
|
-
},
|
|
2163
1558
|
"ObjectPageSectionForm": {
|
|
2164
1559
|
"type": "object",
|
|
2165
1560
|
"properties": {
|