@sapui5/ts-types 1.99.0 → 1.100.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/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +2 -6
- package/types/sap.fe.core.d.ts +282 -333
- package/types/sap.fe.macros.d.ts +566 -47
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +709 -12
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +462 -86
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +5 -5
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +47 -33
- package/types/sap.ui.core.d.ts +771 -470
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.generic.app.d.ts +4 -3
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +21 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +2 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +61 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +2 -2
- package/types/sap.ushell.d.ts +4419 -4850
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +105 -231
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +2 -2
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -19728,7 +19728,8 @@ declare namespace sap {
|
|
|
19728
19728
|
|
|
19729
19729
|
/**
|
|
19730
19730
|
* A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
|
|
19731
|
-
* property.
|
|
19731
|
+
* property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
|
|
19732
|
+
* instance.
|
|
19732
19733
|
*/
|
|
19733
19734
|
shapes?:
|
|
19734
19735
|
| sap.gantt.simple.BaseShape[]
|
|
@@ -20199,6 +20200,20 @@ declare namespace sap {
|
|
|
20199
20200
|
| sap.gantt.ValueSVGPaintServer
|
|
20200
20201
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20201
20202
|
|
|
20203
|
+
/**
|
|
20204
|
+
* @SINCE 1.100
|
|
20205
|
+
*
|
|
20206
|
+
* The fontSize property refers to the size of the font
|
|
20207
|
+
*/
|
|
20208
|
+
fontSize?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20209
|
+
|
|
20210
|
+
/**
|
|
20211
|
+
* @SINCE 1.100
|
|
20212
|
+
*
|
|
20213
|
+
* The fontWeight property refers to the font weight that gets used to render the text in the shape.
|
|
20214
|
+
*/
|
|
20215
|
+
fontWeight?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20216
|
+
|
|
20202
20217
|
/**
|
|
20203
20218
|
* Enables alignment of the shape. The shape can be aligned to the top, middle or bottom. By default, this
|
|
20204
20219
|
* property is set to Middle. **Note:** Alignment is not possible for BaseLine and BasePath. It will be
|
|
@@ -20241,6 +20256,20 @@ declare namespace sap {
|
|
|
20241
20256
|
selectedTitleColor?:
|
|
20242
20257
|
| sap.gantt.ValueSVGPaintServer
|
|
20243
20258
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20259
|
+
|
|
20260
|
+
/**
|
|
20261
|
+
* @SINCE 1.100
|
|
20262
|
+
*
|
|
20263
|
+
* Whether the shape is highlightable
|
|
20264
|
+
*/
|
|
20265
|
+
highlightable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20266
|
+
|
|
20267
|
+
/**
|
|
20268
|
+
* @SINCE 1.100
|
|
20269
|
+
*
|
|
20270
|
+
* Whether the shape is highlighted
|
|
20271
|
+
*/
|
|
20272
|
+
highlighted?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20244
20273
|
}
|
|
20245
20274
|
|
|
20246
20275
|
interface $BaseTextSettings extends sap.gantt.simple.$BaseShapeSettings {
|
|
@@ -20437,6 +20466,15 @@ declare namespace sap {
|
|
|
20437
20466
|
| boolean
|
|
20438
20467
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20439
20468
|
|
|
20469
|
+
/**
|
|
20470
|
+
* @SINCE 1.100
|
|
20471
|
+
*
|
|
20472
|
+
* Flag to show or hide Find and Select search button
|
|
20473
|
+
*/
|
|
20474
|
+
showSearchButton?:
|
|
20475
|
+
| boolean
|
|
20476
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20477
|
+
|
|
20440
20478
|
/**
|
|
20441
20479
|
* The additional setting items in Setting Dialog
|
|
20442
20480
|
*/
|
|
@@ -20464,6 +20502,13 @@ declare namespace sap {
|
|
|
20464
20502
|
* Fired when a different display type is selected in the display type menu.
|
|
20465
20503
|
*/
|
|
20466
20504
|
displayTypeChange?: (oEvent: sap.ui.base.Event) => void;
|
|
20505
|
+
|
|
20506
|
+
/**
|
|
20507
|
+
* @SINCE 1.100
|
|
20508
|
+
*
|
|
20509
|
+
* Fired to invoke Gantt search side panel
|
|
20510
|
+
*/
|
|
20511
|
+
ganttSidePanel?: (oEvent: sap.ui.base.Event) => void;
|
|
20467
20512
|
}
|
|
20468
20513
|
|
|
20469
20514
|
interface $ContainerToolbarPlaceholderSettings
|
|
@@ -20841,6 +20886,15 @@ declare namespace sap {
|
|
|
20841
20886
|
*/
|
|
20842
20887
|
_enableRTA?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20843
20888
|
|
|
20889
|
+
/**
|
|
20890
|
+
* @SINCE 1.100
|
|
20891
|
+
*
|
|
20892
|
+
* Flag to enable and disable search side panel.
|
|
20893
|
+
*/
|
|
20894
|
+
showSearchSidePanel?:
|
|
20895
|
+
| boolean
|
|
20896
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20897
|
+
|
|
20844
20898
|
/**
|
|
20845
20899
|
* Toolbar of the container.
|
|
20846
20900
|
*/
|
|
@@ -20872,6 +20926,13 @@ declare namespace sap {
|
|
|
20872
20926
|
*/
|
|
20873
20927
|
variantHandler?: sap.gantt.simple.CustomVariantHandler;
|
|
20874
20928
|
|
|
20929
|
+
/**
|
|
20930
|
+
* @SINCE 1.100
|
|
20931
|
+
*
|
|
20932
|
+
* Side panel to display search results of Find and Select operation in the chart area
|
|
20933
|
+
*/
|
|
20934
|
+
searchSidePanel?: /* was: sap.gantt.simple.GanttSearchSidePanel */ any;
|
|
20935
|
+
|
|
20875
20936
|
/**
|
|
20876
20937
|
* Event fired when the custom settings value is changed.
|
|
20877
20938
|
*
|
|
@@ -20950,6 +21011,27 @@ declare namespace sap {
|
|
|
20950
21011
|
| object
|
|
20951
21012
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20952
21013
|
|
|
21014
|
+
/**
|
|
21015
|
+
* @SINCE 1.100
|
|
21016
|
+
*
|
|
21017
|
+
* A JSON object containing the shapeHighlightSettings that is used to configure shape highlight styles.
|
|
21018
|
+
* If nothing is specified, then the default highlight styles (2px dashed black border) is set. Below
|
|
21019
|
+
* you can find a brief example
|
|
21020
|
+
* ```javascript
|
|
21021
|
+
*
|
|
21022
|
+
* {
|
|
21023
|
+
* color: "#808080",
|
|
21024
|
+
* strokeWidth: 2,
|
|
21025
|
+
* strokeDasharray: "5,1"
|
|
21026
|
+
* shapeColor: null,
|
|
21027
|
+
* fillOpacity: 0
|
|
21028
|
+
* }
|
|
21029
|
+
* ```
|
|
21030
|
+
*/
|
|
21031
|
+
shapeHighlightSettings?:
|
|
21032
|
+
| object
|
|
21033
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21034
|
+
|
|
20953
21035
|
/**
|
|
20954
21036
|
* Flag whether to show or hide the cursor line when moving your mouse cursor
|
|
20955
21037
|
*/
|
|
@@ -21310,6 +21392,20 @@ declare namespace sap {
|
|
|
21310
21392
|
| boolean
|
|
21311
21393
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21312
21394
|
|
|
21395
|
+
/**
|
|
21396
|
+
* @SINCE 1.100
|
|
21397
|
+
*
|
|
21398
|
+
* Defines the property names for which findAll method should search in different entities
|
|
21399
|
+
*/
|
|
21400
|
+
findBy?: string[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21401
|
+
|
|
21402
|
+
/**
|
|
21403
|
+
* @SINCE 1.100
|
|
21404
|
+
*
|
|
21405
|
+
* Defines relationship between the operator and the property names using the findAll method
|
|
21406
|
+
*/
|
|
21407
|
+
findByOperator?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21408
|
+
|
|
21313
21409
|
/**
|
|
21314
21410
|
* Table of the Gantt Chart
|
|
21315
21411
|
*
|
|
@@ -21412,6 +21508,13 @@ declare namespace sap {
|
|
|
21412
21508
|
*/
|
|
21413
21509
|
shapeSelectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
21414
21510
|
|
|
21511
|
+
/**
|
|
21512
|
+
* @SINCE 1.100
|
|
21513
|
+
*
|
|
21514
|
+
* Fired when the shape's highlight has been changed
|
|
21515
|
+
*/
|
|
21516
|
+
shapeHighlightChange?: (oEvent: sap.ui.base.Event) => void;
|
|
21517
|
+
|
|
21415
21518
|
/**
|
|
21416
21519
|
* Fired when a shape is resized.
|
|
21417
21520
|
*/
|
|
@@ -21463,6 +21566,13 @@ declare namespace sap {
|
|
|
21463
21566
|
* This event is fired when the visible horizon is changed.
|
|
21464
21567
|
*/
|
|
21465
21568
|
visibleHorizonUpdate?: (oEvent: sap.ui.base.Event) => void;
|
|
21569
|
+
|
|
21570
|
+
/**
|
|
21571
|
+
* @SINCE 1.100
|
|
21572
|
+
*
|
|
21573
|
+
* This event is fired when Gantt chart is rendered completely.
|
|
21574
|
+
*/
|
|
21575
|
+
renderingComplete?: (oEvent: sap.ui.base.Event) => void;
|
|
21466
21576
|
}
|
|
21467
21577
|
|
|
21468
21578
|
interface $GanttPrintingSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -21933,6 +22043,15 @@ declare namespace sap {
|
|
|
21933
22043
|
*/
|
|
21934
22044
|
maxValue?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21935
22045
|
|
|
22046
|
+
/**
|
|
22047
|
+
* @SINCE 1.100.0
|
|
22048
|
+
*
|
|
22049
|
+
* Property to enable Compact View.
|
|
22050
|
+
*/
|
|
22051
|
+
showCompactView?:
|
|
22052
|
+
| boolean
|
|
22053
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22054
|
+
|
|
21936
22055
|
/**
|
|
21937
22056
|
* Dimensions of the Stock Chart
|
|
21938
22057
|
*/
|
|
@@ -23395,17 +23514,19 @@ declare namespace sap {
|
|
|
23395
23514
|
*/
|
|
23396
23515
|
oShape: sap.gantt.simple.BaseShape
|
|
23397
23516
|
): this;
|
|
23517
|
+
/**
|
|
23518
|
+
* Overrides the clone method for creating active shape instance. This method overrides clone from managed
|
|
23519
|
+
* object so as to instantiate only active shape.
|
|
23520
|
+
*/
|
|
23521
|
+
clone(): this;
|
|
23398
23522
|
/**
|
|
23399
23523
|
* Destroys all the shapes in the aggregation {@link #getShapes shapes}.
|
|
23400
23524
|
*/
|
|
23401
23525
|
destroyShapes(): this;
|
|
23402
23526
|
/**
|
|
23403
|
-
* Gets current value of property
|
|
23404
|
-
*
|
|
23405
|
-
*
|
|
23406
|
-
* that is greater than the number of shapes defined, no shape will be rendered.
|
|
23407
|
-
*
|
|
23408
|
-
* Default value is `0`.
|
|
23527
|
+
* Gets current value of property activeShape. Defines which shape from the shapes aggregation is visible.
|
|
23528
|
+
* If you specify a negative value or a value that is greater than the number of shapes defined, no shape
|
|
23529
|
+
* will be rendered. Default value is 0.
|
|
23409
23530
|
*/
|
|
23410
23531
|
getActiveShape(): int;
|
|
23411
23532
|
/**
|
|
@@ -23416,7 +23537,8 @@ declare namespace sap {
|
|
|
23416
23537
|
* Gets content of aggregation {@link #getShapes shapes}.
|
|
23417
23538
|
*
|
|
23418
23539
|
* A list of base shapes to switch between. Only one of these shapes will be rendered based on the `activeShape`
|
|
23419
|
-
* property.
|
|
23540
|
+
* property. Incase if aggregation is bound to listbinding,this aggregation will includes only active shape
|
|
23541
|
+
* instance.
|
|
23420
23542
|
*/
|
|
23421
23543
|
getShapes(): sap.gantt.simple.BaseShape[];
|
|
23422
23544
|
/**
|
|
@@ -25074,6 +25196,46 @@ declare namespace sap {
|
|
|
25074
25196
|
* Default value is `"Arial"`.
|
|
25075
25197
|
*/
|
|
25076
25198
|
getFontFamily(): string;
|
|
25199
|
+
/**
|
|
25200
|
+
* @SINCE 1.100
|
|
25201
|
+
*
|
|
25202
|
+
* Gets current value of property {@link #getFontSize fontSize}.
|
|
25203
|
+
*
|
|
25204
|
+
* The fontSize property refers to the size of the font
|
|
25205
|
+
*
|
|
25206
|
+
* Default value is `13`.
|
|
25207
|
+
*/
|
|
25208
|
+
getFontSize(): int;
|
|
25209
|
+
/**
|
|
25210
|
+
* @SINCE 1.100
|
|
25211
|
+
*
|
|
25212
|
+
* Gets current value of property {@link #getFontWeight fontWeight}.
|
|
25213
|
+
*
|
|
25214
|
+
* The fontWeight property refers to the font weight that gets used to render the text in the shape.
|
|
25215
|
+
*
|
|
25216
|
+
* Default value is `"normal"`.
|
|
25217
|
+
*/
|
|
25218
|
+
getFontWeight(): string;
|
|
25219
|
+
/**
|
|
25220
|
+
* @SINCE 1.100
|
|
25221
|
+
*
|
|
25222
|
+
* Gets current value of property {@link #getHighlightable highlightable}.
|
|
25223
|
+
*
|
|
25224
|
+
* Whether the shape is highlightable
|
|
25225
|
+
*
|
|
25226
|
+
* Default value is `false`.
|
|
25227
|
+
*/
|
|
25228
|
+
getHighlightable(): boolean;
|
|
25229
|
+
/**
|
|
25230
|
+
* @SINCE 1.100
|
|
25231
|
+
*
|
|
25232
|
+
* Gets current value of property {@link #getHighlighted highlighted}.
|
|
25233
|
+
*
|
|
25234
|
+
* Whether the shape is highlighted
|
|
25235
|
+
*
|
|
25236
|
+
* Default value is `false`.
|
|
25237
|
+
*/
|
|
25238
|
+
getHighlighted(): boolean;
|
|
25077
25239
|
/**
|
|
25078
25240
|
* @SINCE 1.86
|
|
25079
25241
|
*
|
|
@@ -25535,6 +25697,72 @@ declare namespace sap {
|
|
|
25535
25697
|
*/
|
|
25536
25698
|
sFontFamily?: string
|
|
25537
25699
|
): this;
|
|
25700
|
+
/**
|
|
25701
|
+
* @SINCE 1.100
|
|
25702
|
+
*
|
|
25703
|
+
* Sets a new value for property {@link #getFontSize fontSize}.
|
|
25704
|
+
*
|
|
25705
|
+
* The fontSize property refers to the size of the font
|
|
25706
|
+
*
|
|
25707
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25708
|
+
*
|
|
25709
|
+
* Default value is `13`.
|
|
25710
|
+
*/
|
|
25711
|
+
setFontSize(
|
|
25712
|
+
/**
|
|
25713
|
+
* New value for property `fontSize`
|
|
25714
|
+
*/
|
|
25715
|
+
iFontSize?: int
|
|
25716
|
+
): this;
|
|
25717
|
+
/**
|
|
25718
|
+
* @SINCE 1.100
|
|
25719
|
+
*
|
|
25720
|
+
* Sets a new value for property {@link #getFontWeight fontWeight}.
|
|
25721
|
+
*
|
|
25722
|
+
* The fontWeight property refers to the font weight that gets used to render the text in the shape.
|
|
25723
|
+
*
|
|
25724
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25725
|
+
*
|
|
25726
|
+
* Default value is `"normal"`.
|
|
25727
|
+
*/
|
|
25728
|
+
setFontWeight(
|
|
25729
|
+
/**
|
|
25730
|
+
* New value for property `fontWeight`
|
|
25731
|
+
*/
|
|
25732
|
+
sFontWeight?: string
|
|
25733
|
+
): this;
|
|
25734
|
+
/**
|
|
25735
|
+
* @SINCE 1.100
|
|
25736
|
+
*
|
|
25737
|
+
* Sets a new value for property {@link #getHighlightable highlightable}.
|
|
25738
|
+
*
|
|
25739
|
+
* Whether the shape is highlightable
|
|
25740
|
+
*
|
|
25741
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25742
|
+
*
|
|
25743
|
+
* Default value is `false`.
|
|
25744
|
+
*/
|
|
25745
|
+
setHighlightable(
|
|
25746
|
+
/**
|
|
25747
|
+
* New value for property `highlightable`
|
|
25748
|
+
*/
|
|
25749
|
+
bHighlightable?: boolean
|
|
25750
|
+
): this;
|
|
25751
|
+
/**
|
|
25752
|
+
* @SINCE 1.100
|
|
25753
|
+
*
|
|
25754
|
+
* Set highlight property and mark the shape highlighted in Highlight Model
|
|
25755
|
+
*/
|
|
25756
|
+
setHighlighted(
|
|
25757
|
+
/**
|
|
25758
|
+
* Flag to higlight shape.
|
|
25759
|
+
*/
|
|
25760
|
+
bHighlighted: Boolean,
|
|
25761
|
+
/**
|
|
25762
|
+
* Flag to suppress re-rendering of the control.
|
|
25763
|
+
*/
|
|
25764
|
+
bSuppressInvalidate: Boolean
|
|
25765
|
+
): void;
|
|
25538
25766
|
/**
|
|
25539
25767
|
* @SINCE 1.86
|
|
25540
25768
|
*
|
|
@@ -26786,6 +27014,53 @@ declare namespace sap {
|
|
|
26786
27014
|
*/
|
|
26787
27015
|
oListener?: object
|
|
26788
27016
|
): this;
|
|
27017
|
+
/**
|
|
27018
|
+
* @SINCE 1.100
|
|
27019
|
+
*
|
|
27020
|
+
* Attaches event handler `fnFunction` to the {@link #event:ganttSidePanel ganttSidePanel} event of this
|
|
27021
|
+
* `sap.gantt.simple.ContainerToolbar`.
|
|
27022
|
+
*
|
|
27023
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
27024
|
+
* otherwise it will be bound to this `sap.gantt.simple.ContainerToolbar` itself.
|
|
27025
|
+
*
|
|
27026
|
+
* Fired to invoke Gantt search side panel
|
|
27027
|
+
*/
|
|
27028
|
+
attachGanttSidePanel(
|
|
27029
|
+
/**
|
|
27030
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
27031
|
+
* object when firing the event
|
|
27032
|
+
*/
|
|
27033
|
+
oData: object,
|
|
27034
|
+
/**
|
|
27035
|
+
* The function to be called when the event occurs
|
|
27036
|
+
*/
|
|
27037
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
27038
|
+
/**
|
|
27039
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.ContainerToolbar` itself
|
|
27040
|
+
*/
|
|
27041
|
+
oListener?: object
|
|
27042
|
+
): this;
|
|
27043
|
+
/**
|
|
27044
|
+
* @SINCE 1.100
|
|
27045
|
+
*
|
|
27046
|
+
* Attaches event handler `fnFunction` to the {@link #event:ganttSidePanel ganttSidePanel} event of this
|
|
27047
|
+
* `sap.gantt.simple.ContainerToolbar`.
|
|
27048
|
+
*
|
|
27049
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
27050
|
+
* otherwise it will be bound to this `sap.gantt.simple.ContainerToolbar` itself.
|
|
27051
|
+
*
|
|
27052
|
+
* Fired to invoke Gantt search side panel
|
|
27053
|
+
*/
|
|
27054
|
+
attachGanttSidePanel(
|
|
27055
|
+
/**
|
|
27056
|
+
* The function to be called when the event occurs
|
|
27057
|
+
*/
|
|
27058
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
27059
|
+
/**
|
|
27060
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.ContainerToolbar` itself
|
|
27061
|
+
*/
|
|
27062
|
+
oListener?: object
|
|
27063
|
+
): this;
|
|
26789
27064
|
/**
|
|
26790
27065
|
* Attaches event handler `fnFunction` to the {@link #event:zoomStopChange zoomStopChange} event of this
|
|
26791
27066
|
* `sap.gantt.simple.ContainerToolbar`.
|
|
@@ -26869,6 +27144,24 @@ declare namespace sap {
|
|
|
26869
27144
|
*/
|
|
26870
27145
|
oListener?: object
|
|
26871
27146
|
): this;
|
|
27147
|
+
/**
|
|
27148
|
+
* @SINCE 1.100
|
|
27149
|
+
*
|
|
27150
|
+
* Detaches event handler `fnFunction` from the {@link #event:ganttSidePanel ganttSidePanel} event of this
|
|
27151
|
+
* `sap.gantt.simple.ContainerToolbar`.
|
|
27152
|
+
*
|
|
27153
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
27154
|
+
*/
|
|
27155
|
+
detachGanttSidePanel(
|
|
27156
|
+
/**
|
|
27157
|
+
* The function to be called, when the event occurs
|
|
27158
|
+
*/
|
|
27159
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
27160
|
+
/**
|
|
27161
|
+
* Context object on which the given function had to be called
|
|
27162
|
+
*/
|
|
27163
|
+
oListener?: object
|
|
27164
|
+
): this;
|
|
26872
27165
|
/**
|
|
26873
27166
|
* Detaches event handler `fnFunction` from the {@link #event:zoomStopChange zoomStopChange} event of this
|
|
26874
27167
|
* `sap.gantt.simple.ContainerToolbar`.
|
|
@@ -26905,6 +27198,19 @@ declare namespace sap {
|
|
|
26905
27198
|
displayType?: sap.gantt.simple.GanttChartWithTableDisplayType;
|
|
26906
27199
|
}
|
|
26907
27200
|
): this;
|
|
27201
|
+
/**
|
|
27202
|
+
* @SINCE 1.100
|
|
27203
|
+
*
|
|
27204
|
+
* Fires event {@link #event:ganttSidePanel ganttSidePanel} to attached listeners.
|
|
27205
|
+
*/
|
|
27206
|
+
fireGanttSidePanel(
|
|
27207
|
+
/**
|
|
27208
|
+
* Parameters to pass along with the event
|
|
27209
|
+
*/
|
|
27210
|
+
mParameters?: {
|
|
27211
|
+
updateSidePanelState?: object;
|
|
27212
|
+
}
|
|
27213
|
+
): this;
|
|
26908
27214
|
/**
|
|
26909
27215
|
* Fires event {@link #event:zoomStopChange zoomStopChange} to attached listeners.
|
|
26910
27216
|
*/
|
|
@@ -26976,6 +27282,16 @@ declare namespace sap {
|
|
|
26976
27282
|
* Default value is `false`.
|
|
26977
27283
|
*/
|
|
26978
27284
|
getShowLegendButton(): boolean;
|
|
27285
|
+
/**
|
|
27286
|
+
* @SINCE 1.100
|
|
27287
|
+
*
|
|
27288
|
+
* Gets current value of property {@link #getShowSearchButton showSearchButton}.
|
|
27289
|
+
*
|
|
27290
|
+
* Flag to show or hide Find and Select search button
|
|
27291
|
+
*
|
|
27292
|
+
* Default value is `false`.
|
|
27293
|
+
*/
|
|
27294
|
+
getShowSearchButton(): boolean;
|
|
26979
27295
|
/**
|
|
26980
27296
|
* Gets current value of property {@link #getShowSettingButton showSettingButton}.
|
|
26981
27297
|
*
|
|
@@ -27150,6 +27466,23 @@ declare namespace sap {
|
|
|
27150
27466
|
*/
|
|
27151
27467
|
bShowLegendButton?: boolean
|
|
27152
27468
|
): this;
|
|
27469
|
+
/**
|
|
27470
|
+
* @SINCE 1.100
|
|
27471
|
+
*
|
|
27472
|
+
* Sets a new value for property {@link #getShowSearchButton showSearchButton}.
|
|
27473
|
+
*
|
|
27474
|
+
* Flag to show or hide Find and Select search button
|
|
27475
|
+
*
|
|
27476
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27477
|
+
*
|
|
27478
|
+
* Default value is `false`.
|
|
27479
|
+
*/
|
|
27480
|
+
setShowSearchButton(
|
|
27481
|
+
/**
|
|
27482
|
+
* New value for property `showSearchButton`
|
|
27483
|
+
*/
|
|
27484
|
+
bShowSearchButton?: boolean
|
|
27485
|
+
): this;
|
|
27153
27486
|
/**
|
|
27154
27487
|
* Sets a new value for property {@link #getShowSettingButton showSettingButton}.
|
|
27155
27488
|
*
|
|
@@ -28836,6 +29169,12 @@ declare namespace sap {
|
|
|
28836
29169
|
* Destroys all the ganttCharts in the aggregation {@link #getGanttCharts ganttCharts}.
|
|
28837
29170
|
*/
|
|
28838
29171
|
destroyGanttCharts(): this;
|
|
29172
|
+
/**
|
|
29173
|
+
* @SINCE 1.100
|
|
29174
|
+
*
|
|
29175
|
+
* Destroys the searchSidePanel in the aggregation {@link #getSearchSidePanel searchSidePanel}.
|
|
29176
|
+
*/
|
|
29177
|
+
destroySearchSidePanel(): this;
|
|
28839
29178
|
/**
|
|
28840
29179
|
* Destroys the statusBar in the aggregation {@link #getStatusBar statusBar}.
|
|
28841
29180
|
*/
|
|
@@ -29067,6 +29406,24 @@ declare namespace sap {
|
|
|
29067
29406
|
* Default value is `Vertical`.
|
|
29068
29407
|
*/
|
|
29069
29408
|
getLayoutOrientation(): sap.ui.core.Orientation;
|
|
29409
|
+
/**
|
|
29410
|
+
* @SINCE 1.100
|
|
29411
|
+
*
|
|
29412
|
+
* Gets content of aggregation {@link #getSearchSidePanel searchSidePanel}.
|
|
29413
|
+
*
|
|
29414
|
+
* Side panel to display search results of Find and Select operation in the chart area
|
|
29415
|
+
*/
|
|
29416
|
+
getSearchSidePanel(): /* was: sap.gantt.simple.GanttSearchSidePanel */ any;
|
|
29417
|
+
/**
|
|
29418
|
+
* @SINCE 1.100
|
|
29419
|
+
*
|
|
29420
|
+
* Gets current value of property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
29421
|
+
*
|
|
29422
|
+
* Flag to enable and disable search side panel.
|
|
29423
|
+
*
|
|
29424
|
+
* Default value is `false`.
|
|
29425
|
+
*/
|
|
29426
|
+
getShowSearchSidePanel(): boolean;
|
|
29070
29427
|
/**
|
|
29071
29428
|
* Gets content of aggregation {@link #getStatusBar statusBar}.
|
|
29072
29429
|
*
|
|
@@ -29417,6 +29774,34 @@ declare namespace sap {
|
|
|
29417
29774
|
*/
|
|
29418
29775
|
sLayoutOrientation?: sap.ui.core.Orientation
|
|
29419
29776
|
): this;
|
|
29777
|
+
/**
|
|
29778
|
+
* @SINCE 1.100
|
|
29779
|
+
*
|
|
29780
|
+
* Sets the aggregated {@link #getSearchSidePanel searchSidePanel}.
|
|
29781
|
+
*/
|
|
29782
|
+
setSearchSidePanel(
|
|
29783
|
+
/**
|
|
29784
|
+
* The searchSidePanel to set
|
|
29785
|
+
*/
|
|
29786
|
+
oSearchSidePanel: /* was: sap.gantt.simple.GanttSearchSidePanel */ any
|
|
29787
|
+
): this;
|
|
29788
|
+
/**
|
|
29789
|
+
* @SINCE 1.100
|
|
29790
|
+
*
|
|
29791
|
+
* Sets a new value for property {@link #getShowSearchSidePanel showSearchSidePanel}.
|
|
29792
|
+
*
|
|
29793
|
+
* Flag to enable and disable search side panel.
|
|
29794
|
+
*
|
|
29795
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29796
|
+
*
|
|
29797
|
+
* Default value is `false`.
|
|
29798
|
+
*/
|
|
29799
|
+
setShowSearchSidePanel(
|
|
29800
|
+
/**
|
|
29801
|
+
* New value for property `showSearchSidePanel`
|
|
29802
|
+
*/
|
|
29803
|
+
bShowSearchSidePanel?: boolean
|
|
29804
|
+
): this;
|
|
29420
29805
|
/**
|
|
29421
29806
|
* Sets the aggregated {@link #getStatusBar statusBar}.
|
|
29422
29807
|
*/
|
|
@@ -29576,6 +29961,17 @@ declare namespace sap {
|
|
|
29576
29961
|
* Returns a metadata object for class sap.gantt.simple.GanttChartWithTable.
|
|
29577
29962
|
*/
|
|
29578
29963
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
29964
|
+
/**
|
|
29965
|
+
* @SINCE 1.100
|
|
29966
|
+
*
|
|
29967
|
+
* fireShapeHighlightChange event is fired if there is change in highlighted shape.
|
|
29968
|
+
*/
|
|
29969
|
+
_onHighlightChanged(
|
|
29970
|
+
/**
|
|
29971
|
+
* fired on the highlighted shape by navigation
|
|
29972
|
+
*/
|
|
29973
|
+
oEvent: Event
|
|
29974
|
+
): void;
|
|
29579
29975
|
/**
|
|
29580
29976
|
* @deprecated (since 1.84) - use {@link sap.gantt.simple.AdhocLine} instead.
|
|
29581
29977
|
*
|
|
@@ -29672,6 +30068,55 @@ declare namespace sap {
|
|
|
29672
30068
|
*/
|
|
29673
30069
|
oListener?: object
|
|
29674
30070
|
): this;
|
|
30071
|
+
/**
|
|
30072
|
+
* @SINCE 1.100
|
|
30073
|
+
*
|
|
30074
|
+
* Attaches event handler `fnFunction` to the {@link #event:renderingComplete renderingComplete} event of
|
|
30075
|
+
* this `sap.gantt.simple.GanttChartWithTable`.
|
|
30076
|
+
*
|
|
30077
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
30078
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
|
|
30079
|
+
*
|
|
30080
|
+
* This event is fired when Gantt chart is rendered completely.
|
|
30081
|
+
*/
|
|
30082
|
+
attachRenderingComplete(
|
|
30083
|
+
/**
|
|
30084
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
30085
|
+
* object when firing the event
|
|
30086
|
+
*/
|
|
30087
|
+
oData: object,
|
|
30088
|
+
/**
|
|
30089
|
+
* The function to be called when the event occurs
|
|
30090
|
+
*/
|
|
30091
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30092
|
+
/**
|
|
30093
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
|
|
30094
|
+
* itself
|
|
30095
|
+
*/
|
|
30096
|
+
oListener?: object
|
|
30097
|
+
): this;
|
|
30098
|
+
/**
|
|
30099
|
+
* @SINCE 1.100
|
|
30100
|
+
*
|
|
30101
|
+
* Attaches event handler `fnFunction` to the {@link #event:renderingComplete renderingComplete} event of
|
|
30102
|
+
* this `sap.gantt.simple.GanttChartWithTable`.
|
|
30103
|
+
*
|
|
30104
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
30105
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
|
|
30106
|
+
*
|
|
30107
|
+
* This event is fired when Gantt chart is rendered completely.
|
|
30108
|
+
*/
|
|
30109
|
+
attachRenderingComplete(
|
|
30110
|
+
/**
|
|
30111
|
+
* The function to be called when the event occurs
|
|
30112
|
+
*/
|
|
30113
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30114
|
+
/**
|
|
30115
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
|
|
30116
|
+
* itself
|
|
30117
|
+
*/
|
|
30118
|
+
oListener?: object
|
|
30119
|
+
): this;
|
|
29675
30120
|
/**
|
|
29676
30121
|
* Attaches event handler `fnFunction` to the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
|
|
29677
30122
|
*
|
|
@@ -29848,6 +30293,55 @@ declare namespace sap {
|
|
|
29848
30293
|
*/
|
|
29849
30294
|
oListener?: object
|
|
29850
30295
|
): this;
|
|
30296
|
+
/**
|
|
30297
|
+
* @SINCE 1.100
|
|
30298
|
+
*
|
|
30299
|
+
* Attaches event handler `fnFunction` to the {@link #event:shapeHighlightChange shapeHighlightChange} event
|
|
30300
|
+
* of this `sap.gantt.simple.GanttChartWithTable`.
|
|
30301
|
+
*
|
|
30302
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
30303
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
|
|
30304
|
+
*
|
|
30305
|
+
* Fired when the shape's highlight has been changed
|
|
30306
|
+
*/
|
|
30307
|
+
attachShapeHighlightChange(
|
|
30308
|
+
/**
|
|
30309
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
30310
|
+
* object when firing the event
|
|
30311
|
+
*/
|
|
30312
|
+
oData: object,
|
|
30313
|
+
/**
|
|
30314
|
+
* The function to be called when the event occurs
|
|
30315
|
+
*/
|
|
30316
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30317
|
+
/**
|
|
30318
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
|
|
30319
|
+
* itself
|
|
30320
|
+
*/
|
|
30321
|
+
oListener?: object
|
|
30322
|
+
): this;
|
|
30323
|
+
/**
|
|
30324
|
+
* @SINCE 1.100
|
|
30325
|
+
*
|
|
30326
|
+
* Attaches event handler `fnFunction` to the {@link #event:shapeHighlightChange shapeHighlightChange} event
|
|
30327
|
+
* of this `sap.gantt.simple.GanttChartWithTable`.
|
|
30328
|
+
*
|
|
30329
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
30330
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartWithTable` itself.
|
|
30331
|
+
*
|
|
30332
|
+
* Fired when the shape's highlight has been changed
|
|
30333
|
+
*/
|
|
30334
|
+
attachShapeHighlightChange(
|
|
30335
|
+
/**
|
|
30336
|
+
* The function to be called when the event occurs
|
|
30337
|
+
*/
|
|
30338
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30339
|
+
/**
|
|
30340
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartWithTable`
|
|
30341
|
+
* itself
|
|
30342
|
+
*/
|
|
30343
|
+
oListener?: object
|
|
30344
|
+
): this;
|
|
29851
30345
|
/**
|
|
29852
30346
|
* Attaches event handler `fnFunction` to the {@link #event:shapeMouseEnter shapeMouseEnter} event of this
|
|
29853
30347
|
* `sap.gantt.simple.GanttChartWithTable`.
|
|
@@ -30272,6 +30766,24 @@ declare namespace sap {
|
|
|
30272
30766
|
*/
|
|
30273
30767
|
oListener?: object
|
|
30274
30768
|
): this;
|
|
30769
|
+
/**
|
|
30770
|
+
* @SINCE 1.100
|
|
30771
|
+
*
|
|
30772
|
+
* Detaches event handler `fnFunction` from the {@link #event:renderingComplete renderingComplete} event
|
|
30773
|
+
* of this `sap.gantt.simple.GanttChartWithTable`.
|
|
30774
|
+
*
|
|
30775
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
30776
|
+
*/
|
|
30777
|
+
detachRenderingComplete(
|
|
30778
|
+
/**
|
|
30779
|
+
* The function to be called, when the event occurs
|
|
30780
|
+
*/
|
|
30781
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30782
|
+
/**
|
|
30783
|
+
* Context object on which the given function had to be called
|
|
30784
|
+
*/
|
|
30785
|
+
oListener?: object
|
|
30786
|
+
): this;
|
|
30275
30787
|
/**
|
|
30276
30788
|
* Detaches event handler `fnFunction` from the {@link #event:shapeConnect shapeConnect} event of this `sap.gantt.simple.GanttChartWithTable`.
|
|
30277
30789
|
*
|
|
@@ -30334,6 +30846,24 @@ declare namespace sap {
|
|
|
30334
30846
|
*/
|
|
30335
30847
|
oListener?: object
|
|
30336
30848
|
): this;
|
|
30849
|
+
/**
|
|
30850
|
+
* @SINCE 1.100
|
|
30851
|
+
*
|
|
30852
|
+
* Detaches event handler `fnFunction` from the {@link #event:shapeHighlightChange shapeHighlightChange}
|
|
30853
|
+
* event of this `sap.gantt.simple.GanttChartWithTable`.
|
|
30854
|
+
*
|
|
30855
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
30856
|
+
*/
|
|
30857
|
+
detachShapeHighlightChange(
|
|
30858
|
+
/**
|
|
30859
|
+
* The function to be called, when the event occurs
|
|
30860
|
+
*/
|
|
30861
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
30862
|
+
/**
|
|
30863
|
+
* Context object on which the given function had to be called
|
|
30864
|
+
*/
|
|
30865
|
+
oListener?: object
|
|
30866
|
+
): this;
|
|
30337
30867
|
/**
|
|
30338
30868
|
* Detaches event handler `fnFunction` from the {@link #event:shapeMouseEnter shapeMouseEnter} event of
|
|
30339
30869
|
* this `sap.gantt.simple.GanttChartWithTable`.
|
|
@@ -30466,10 +30996,10 @@ declare namespace sap {
|
|
|
30466
30996
|
*/
|
|
30467
30997
|
propertyValue: string,
|
|
30468
30998
|
/**
|
|
30469
|
-
* property to search in (optional parameter)
|
|
30999
|
+
* property names or name to search in (optional parameter)
|
|
30470
31000
|
*/
|
|
30471
|
-
|
|
30472
|
-
):
|
|
31001
|
+
aPropertyNames: string[] | string
|
|
31002
|
+
): Object[];
|
|
30473
31003
|
/**
|
|
30474
31004
|
* @SINCE 1.89
|
|
30475
31005
|
*
|
|
@@ -30556,6 +31086,17 @@ declare namespace sap {
|
|
|
30556
31086
|
cursorDateTime?: object;
|
|
30557
31087
|
}
|
|
30558
31088
|
): this;
|
|
31089
|
+
/**
|
|
31090
|
+
* @SINCE 1.100
|
|
31091
|
+
*
|
|
31092
|
+
* Fires event {@link #event:renderingComplete renderingComplete} to attached listeners.
|
|
31093
|
+
*/
|
|
31094
|
+
fireRenderingComplete(
|
|
31095
|
+
/**
|
|
31096
|
+
* Parameters to pass along with the event
|
|
31097
|
+
*/
|
|
31098
|
+
mParameters?: object
|
|
31099
|
+
): this;
|
|
30559
31100
|
/**
|
|
30560
31101
|
* Fires event {@link #event:shapeConnect shapeConnect} to attached listeners.
|
|
30561
31102
|
*/
|
|
@@ -30697,6 +31238,22 @@ declare namespace sap {
|
|
|
30697
31238
|
targetShape?: sap.gantt.simple.BaseShape;
|
|
30698
31239
|
}
|
|
30699
31240
|
): this;
|
|
31241
|
+
/**
|
|
31242
|
+
* @SINCE 1.100
|
|
31243
|
+
*
|
|
31244
|
+
* Fires event {@link #event:shapeHighlightChange shapeHighlightChange} to attached listeners.
|
|
31245
|
+
*/
|
|
31246
|
+
fireShapeHighlightChange(
|
|
31247
|
+
/**
|
|
31248
|
+
* Parameters to pass along with the event
|
|
31249
|
+
*/
|
|
31250
|
+
mParameters?: {
|
|
31251
|
+
/**
|
|
31252
|
+
* all highlighted shape UID.
|
|
31253
|
+
*/
|
|
31254
|
+
shapeUids?: string[];
|
|
31255
|
+
}
|
|
31256
|
+
): this;
|
|
30700
31257
|
/**
|
|
30701
31258
|
* Fires event {@link #event:shapeMouseEnter shapeMouseEnter} to attached listeners.
|
|
30702
31259
|
*/
|
|
@@ -30820,6 +31377,10 @@ declare namespace sap {
|
|
|
30820
31377
|
* Specifies how the update was initiated.
|
|
30821
31378
|
*/
|
|
30822
31379
|
type?: sap.gantt.simple.VisibleHorizonUpdateType;
|
|
31380
|
+
/**
|
|
31381
|
+
* Provides subType information about the type.
|
|
31382
|
+
*/
|
|
31383
|
+
subType?: sap.gantt.simple.VisibleHorizonUpdateSubType;
|
|
30823
31384
|
/**
|
|
30824
31385
|
* Value of the visible horizon before the current update. Some types of this event don't have this value.
|
|
30825
31386
|
*/
|
|
@@ -31107,6 +31668,26 @@ declare namespace sap {
|
|
|
31107
31668
|
* Property to define the height of an expanded row in pixels.
|
|
31108
31669
|
*/
|
|
31109
31670
|
getExpandedRowHeight(): int;
|
|
31671
|
+
/**
|
|
31672
|
+
* @SINCE 1.100
|
|
31673
|
+
*
|
|
31674
|
+
* Gets current value of property {@link #getFindBy findBy}.
|
|
31675
|
+
*
|
|
31676
|
+
* Defines the property names for which findAll method should search in different entities
|
|
31677
|
+
*
|
|
31678
|
+
* Default value is `[]`.
|
|
31679
|
+
*/
|
|
31680
|
+
getFindBy(): string[];
|
|
31681
|
+
/**
|
|
31682
|
+
* @SINCE 1.100
|
|
31683
|
+
*
|
|
31684
|
+
* Gets current value of property {@link #getFindByOperator findByOperator}.
|
|
31685
|
+
*
|
|
31686
|
+
* Defines relationship between the operator and the property names using the findAll method
|
|
31687
|
+
*
|
|
31688
|
+
* Default value is `library.simple.findByOperator.OR`.
|
|
31689
|
+
*/
|
|
31690
|
+
getFindByOperator(): string;
|
|
31110
31691
|
/**
|
|
31111
31692
|
* @SINCE 1.90
|
|
31112
31693
|
*
|
|
@@ -31133,6 +31714,10 @@ declare namespace sap {
|
|
|
31133
31714
|
* Default value is `"100%"`.
|
|
31134
31715
|
*/
|
|
31135
31716
|
getHeight(): sap.ui.core.CSSSize;
|
|
31717
|
+
/**
|
|
31718
|
+
* Get the highlighted shape in gantt chart
|
|
31719
|
+
*/
|
|
31720
|
+
getHighlightedShapeUid(): Object[];
|
|
31136
31721
|
/**
|
|
31137
31722
|
* Gets content of aggregation {@link #getLocale locale}.
|
|
31138
31723
|
*
|
|
@@ -31203,6 +31788,26 @@ declare namespace sap {
|
|
|
31203
31788
|
* Default value is `false`.
|
|
31204
31789
|
*/
|
|
31205
31790
|
getSelectOnlyGraphicalShape(): boolean;
|
|
31791
|
+
/**
|
|
31792
|
+
* @SINCE 1.100
|
|
31793
|
+
*
|
|
31794
|
+
* Gets current value of property {@link #getShapeHighlightSettings shapeHighlightSettings}.
|
|
31795
|
+
*
|
|
31796
|
+
* A JSON object containing the shapeHighlightSettings that is used to configure shape highlight styles.
|
|
31797
|
+
* If nothing is specified, then the default highlight styles (2px dashed black border) is set. Below
|
|
31798
|
+
* you can find a brief example
|
|
31799
|
+
* ```javascript
|
|
31800
|
+
*
|
|
31801
|
+
* {
|
|
31802
|
+
* color: "#808080",
|
|
31803
|
+
* strokeWidth: 2,
|
|
31804
|
+
* strokeDasharray: "5,1"
|
|
31805
|
+
* shapeColor: null,
|
|
31806
|
+
* fillOpacity: 0
|
|
31807
|
+
* }
|
|
31808
|
+
* ```
|
|
31809
|
+
*/
|
|
31810
|
+
getShapeHighlightSettings(): object;
|
|
31206
31811
|
/**
|
|
31207
31812
|
* @SINCE 1.76
|
|
31208
31813
|
*
|
|
@@ -32108,6 +32713,40 @@ declare namespace sap {
|
|
|
32108
32713
|
*/
|
|
32109
32714
|
iExpandedRowHeight: int
|
|
32110
32715
|
): this;
|
|
32716
|
+
/**
|
|
32717
|
+
* @SINCE 1.100
|
|
32718
|
+
*
|
|
32719
|
+
* Sets a new value for property {@link #getFindBy findBy}.
|
|
32720
|
+
*
|
|
32721
|
+
* Defines the property names for which findAll method should search in different entities
|
|
32722
|
+
*
|
|
32723
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32724
|
+
*
|
|
32725
|
+
* Default value is `[]`.
|
|
32726
|
+
*/
|
|
32727
|
+
setFindBy(
|
|
32728
|
+
/**
|
|
32729
|
+
* New value for property `findBy`
|
|
32730
|
+
*/
|
|
32731
|
+
sFindBy?: string[]
|
|
32732
|
+
): this;
|
|
32733
|
+
/**
|
|
32734
|
+
* @SINCE 1.100
|
|
32735
|
+
*
|
|
32736
|
+
* Sets a new value for property {@link #getFindByOperator findByOperator}.
|
|
32737
|
+
*
|
|
32738
|
+
* Defines relationship between the operator and the property names using the findAll method
|
|
32739
|
+
*
|
|
32740
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32741
|
+
*
|
|
32742
|
+
* Default value is `library.simple.findByOperator.OR`.
|
|
32743
|
+
*/
|
|
32744
|
+
setFindByOperator(
|
|
32745
|
+
/**
|
|
32746
|
+
* New value for property `findByOperator`
|
|
32747
|
+
*/
|
|
32748
|
+
sFindByOperator?: string
|
|
32749
|
+
): this;
|
|
32111
32750
|
/**
|
|
32112
32751
|
* Sets a new value for property {@link #getGhostAlignment ghostAlignment}.
|
|
32113
32752
|
*
|
|
@@ -32586,6 +33225,21 @@ declare namespace sap {
|
|
|
32586
33225
|
* Unbinds aggregation {@link #getSimpleAdhocLines simpleAdhocLines} from model data.
|
|
32587
33226
|
*/
|
|
32588
33227
|
unbindSimpleAdhocLines(): this;
|
|
33228
|
+
/**
|
|
33229
|
+
* @SINCE 1.100
|
|
33230
|
+
*
|
|
33231
|
+
* De-Emphasize shapes based on the de-emphasized shape Uid
|
|
33232
|
+
*/
|
|
33233
|
+
updateShapeHighlights(
|
|
33234
|
+
/**
|
|
33235
|
+
* Shape Uid of the shape to be de-emphasized.
|
|
33236
|
+
*/
|
|
33237
|
+
deEmphasizedUid: String,
|
|
33238
|
+
/**
|
|
33239
|
+
* flag to de-emphasize all highlighted shapes.
|
|
33240
|
+
*/
|
|
33241
|
+
deEmphasizeAll: Boolean
|
|
33242
|
+
): void;
|
|
32589
33243
|
}
|
|
32590
33244
|
/**
|
|
32591
33245
|
* @SINCE 1.66
|
|
@@ -35517,6 +36171,16 @@ declare namespace sap {
|
|
|
35517
36171
|
* Default value is `50`.
|
|
35518
36172
|
*/
|
|
35519
36173
|
getRelativeMiddleLinePoint(): float;
|
|
36174
|
+
/**
|
|
36175
|
+
* @SINCE 1.100.0
|
|
36176
|
+
*
|
|
36177
|
+
* Gets current value of property {@link #getShowCompactView showCompactView}.
|
|
36178
|
+
*
|
|
36179
|
+
* Property to enable Compact View.
|
|
36180
|
+
*
|
|
36181
|
+
* Default value is `true`.
|
|
36182
|
+
*/
|
|
36183
|
+
getShowCompactView(): boolean;
|
|
35520
36184
|
/**
|
|
35521
36185
|
* Gets current value of property {@link #getShowMiddleLine showMiddleLine}.
|
|
35522
36186
|
*
|
|
@@ -35634,6 +36298,23 @@ declare namespace sap {
|
|
|
35634
36298
|
*/
|
|
35635
36299
|
fRelativeMiddleLinePoint?: float
|
|
35636
36300
|
): this;
|
|
36301
|
+
/**
|
|
36302
|
+
* @SINCE 1.100.0
|
|
36303
|
+
*
|
|
36304
|
+
* Sets a new value for property {@link #getShowCompactView showCompactView}.
|
|
36305
|
+
*
|
|
36306
|
+
* Property to enable Compact View.
|
|
36307
|
+
*
|
|
36308
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
36309
|
+
*
|
|
36310
|
+
* Default value is `true`.
|
|
36311
|
+
*/
|
|
36312
|
+
setShowCompactView(
|
|
36313
|
+
/**
|
|
36314
|
+
* New value for property `showCompactView`
|
|
36315
|
+
*/
|
|
36316
|
+
bShowCompactView?: boolean
|
|
36317
|
+
): this;
|
|
35637
36318
|
/**
|
|
35638
36319
|
* Sets a new value for property {@link #getShowMiddleLine showMiddleLine}.
|
|
35639
36320
|
*
|
|
@@ -36964,6 +37645,16 @@ declare namespace sap {
|
|
|
36964
37645
|
*/
|
|
36965
37646
|
VariantManagement = "VariantManagement",
|
|
36966
37647
|
}
|
|
37648
|
+
/**
|
|
37649
|
+
* @SINCE 1.100
|
|
37650
|
+
*
|
|
37651
|
+
* Defines the relationship between the operator and the property names using the findAll method
|
|
37652
|
+
*/
|
|
37653
|
+
enum findByOperator {
|
|
37654
|
+
AND = "AND",
|
|
37655
|
+
|
|
37656
|
+
OR = "OR",
|
|
37657
|
+
}
|
|
36967
37658
|
/**
|
|
36968
37659
|
* Gantt chart display types.
|
|
36969
37660
|
*/
|
|
@@ -37095,6 +37786,12 @@ declare namespace sap {
|
|
|
37095
37786
|
*/
|
|
37096
37787
|
Top = "Top",
|
|
37097
37788
|
}
|
|
37789
|
+
/**
|
|
37790
|
+
* @SINCE 1.100
|
|
37791
|
+
*
|
|
37792
|
+
* This specifies the sub reason detailing why the visible horizon is changing
|
|
37793
|
+
*/
|
|
37794
|
+
enum VisibleHorizonUpdateSubType {}
|
|
37098
37795
|
/**
|
|
37099
37796
|
* @SINCE 1.68
|
|
37100
37797
|
*
|