@sapui5/ts-types 1.134.0 → 1.135.0
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 +2 -3
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +5 -5
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +696 -184
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +6 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +75 -14
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +275 -45
- 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.df.d.ts +354 -1388
- package/types/sap.suite.ui.commons.d.ts +75 -1
- package/types/sap.suite.ui.generic.template.d.ts +6 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +215 -15
- 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 +89 -14
- package/types/sap.ui.core.d.ts +168 -38
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -2
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +11 -10
- package/types/sap.ui.mdc.d.ts +26 -6
- package/types/sap.ui.richtexteditor.d.ts +37 -1
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +22 -16
- package/types/sap.ui.table.d.ts +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +32 -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 +11 -73
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +45 -13
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -1
- package/types/sap.viz.d.ts +1 -1
- 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 +1 -1
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -87,6 +87,74 @@ declare namespace sap {
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
namespace model {
|
|
90
|
+
namespace DataProvider {
|
|
91
|
+
namespace Configuration {
|
|
92
|
+
/**
|
|
93
|
+
* Data provider configuration data source.
|
|
94
|
+
*
|
|
95
|
+
* @experimental As of version 1.135.
|
|
96
|
+
*/
|
|
97
|
+
type DataSource = {
|
|
98
|
+
/**
|
|
99
|
+
* name
|
|
100
|
+
*/
|
|
101
|
+
Name: string;
|
|
102
|
+
/**
|
|
103
|
+
* type
|
|
104
|
+
*/
|
|
105
|
+
Type: sap.sac.df.types.DataSourceType;
|
|
106
|
+
/**
|
|
107
|
+
* system name
|
|
108
|
+
*/
|
|
109
|
+
SystemName: string;
|
|
110
|
+
/**
|
|
111
|
+
* package
|
|
112
|
+
*/
|
|
113
|
+
Package: string;
|
|
114
|
+
/**
|
|
115
|
+
* schema
|
|
116
|
+
*/
|
|
117
|
+
Schema: string;
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Data provider configuration setup properties.
|
|
122
|
+
*
|
|
123
|
+
* @experimental As of version 1.135.
|
|
124
|
+
*/
|
|
125
|
+
type SetupProperties = {
|
|
126
|
+
/**
|
|
127
|
+
* start with auto fetch
|
|
128
|
+
*/
|
|
129
|
+
AutoFetch: boolean[];
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Data provider configuration object.
|
|
135
|
+
*
|
|
136
|
+
* @experimental As of version 1.135.
|
|
137
|
+
*/
|
|
138
|
+
type Configuration = {
|
|
139
|
+
/**
|
|
140
|
+
* name
|
|
141
|
+
*/
|
|
142
|
+
Name: string;
|
|
143
|
+
/**
|
|
144
|
+
* data source
|
|
145
|
+
*/
|
|
146
|
+
DataSource: sap.sac.df.model.DataProvider.Configuration.DataSource;
|
|
147
|
+
/**
|
|
148
|
+
* setup properties
|
|
149
|
+
*/
|
|
150
|
+
SetupProperties: sap.sac.df.model.DataProvider.Configuration.SetupProperties;
|
|
151
|
+
/**
|
|
152
|
+
* semantic information
|
|
153
|
+
*/
|
|
154
|
+
SemanticInfo: object;
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
|
|
90
158
|
namespace visualization {
|
|
91
159
|
namespace Grid {
|
|
92
160
|
/**
|
|
@@ -371,17 +439,12 @@ declare namespace sap {
|
|
|
371
439
|
*/
|
|
372
440
|
static getMetadata(): sap.ui.base.Metadata;
|
|
373
441
|
/**
|
|
374
|
-
*
|
|
442
|
+
* Get active template
|
|
375
443
|
*
|
|
376
444
|
*
|
|
377
|
-
* @returns
|
|
445
|
+
* @returns active template
|
|
378
446
|
*/
|
|
379
|
-
|
|
380
|
-
/**
|
|
381
|
-
* styling template name
|
|
382
|
-
*/
|
|
383
|
-
sStylingTemplateName: string
|
|
384
|
-
): Promise<any>;
|
|
447
|
+
getActiveTemplate(): sap.sac.df.types.configuration.TableTemplate;
|
|
385
448
|
/**
|
|
386
449
|
* Get the current axes layout for rows and columns
|
|
387
450
|
*
|
|
@@ -435,6 +498,18 @@ declare namespace sap {
|
|
|
435
498
|
* @returns a promise which resolves with the visualization data
|
|
436
499
|
*/
|
|
437
500
|
getVisualizationData(): Promise<Object>;
|
|
501
|
+
/**
|
|
502
|
+
* Set active template
|
|
503
|
+
*
|
|
504
|
+
*
|
|
505
|
+
* @returns resolving to the axes layout object to allow chaining
|
|
506
|
+
*/
|
|
507
|
+
setActiveTemplate(
|
|
508
|
+
/**
|
|
509
|
+
* styling template name
|
|
510
|
+
*/
|
|
511
|
+
sTemplateName: string
|
|
512
|
+
): sap.sac.df.model.visualization.Grid;
|
|
438
513
|
/**
|
|
439
514
|
* Set the dimensions on row and column axis
|
|
440
515
|
*
|
|
@@ -590,6 +665,32 @@ declare namespace sap {
|
|
|
590
665
|
* @returns Value of property `StylingPanelItems`
|
|
591
666
|
*/
|
|
592
667
|
getStylingPanelItems(): sap.sac.df.types.configuration.StylingPanelItem[];
|
|
668
|
+
/**
|
|
669
|
+
* Gets current value of property {@link #getTableTemplates TableTemplates}.
|
|
670
|
+
*
|
|
671
|
+
* Available Table Templates
|
|
672
|
+
*
|
|
673
|
+
* Default value is `[Default, Basic, Report]`.
|
|
674
|
+
*
|
|
675
|
+
* @since 1.135
|
|
676
|
+
* @experimental As of version 1.135.
|
|
677
|
+
*
|
|
678
|
+
* @returns Value of property `TableTemplates`
|
|
679
|
+
*/
|
|
680
|
+
getTableTemplates(): sap.sac.df.types.configuration.TableTemplate[];
|
|
681
|
+
/**
|
|
682
|
+
* Gets current value of property {@link #getTableTemplateSelection TableTemplateSelection}.
|
|
683
|
+
*
|
|
684
|
+
* Default table template selection
|
|
685
|
+
*
|
|
686
|
+
* Default value is `TableTemplate.Default`.
|
|
687
|
+
*
|
|
688
|
+
* @since 1.135
|
|
689
|
+
* @experimental As of version 1.135.
|
|
690
|
+
*
|
|
691
|
+
* @returns Value of property `TableTemplateSelection`
|
|
692
|
+
*/
|
|
693
|
+
getTableTemplateSelection(): String;
|
|
593
694
|
/**
|
|
594
695
|
* Sets a new value for property {@link #getCalculations Calculations}.
|
|
595
696
|
*
|
|
@@ -670,6 +771,46 @@ declare namespace sap {
|
|
|
670
771
|
*/
|
|
671
772
|
sStylingPanelItems?: sap.sac.df.types.configuration.StylingPanelItem[]
|
|
672
773
|
): this;
|
|
774
|
+
/**
|
|
775
|
+
* Sets a new value for property {@link #getTableTemplates TableTemplates}.
|
|
776
|
+
*
|
|
777
|
+
* Available Table Templates
|
|
778
|
+
*
|
|
779
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
780
|
+
*
|
|
781
|
+
* Default value is `[Default, Basic, Report]`.
|
|
782
|
+
*
|
|
783
|
+
* @since 1.135
|
|
784
|
+
* @experimental As of version 1.135.
|
|
785
|
+
*
|
|
786
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
787
|
+
*/
|
|
788
|
+
setTableTemplates(
|
|
789
|
+
/**
|
|
790
|
+
* New value for property `TableTemplates`
|
|
791
|
+
*/
|
|
792
|
+
sTableTemplates?: sap.sac.df.types.configuration.TableTemplate[]
|
|
793
|
+
): this;
|
|
794
|
+
/**
|
|
795
|
+
* Sets a new value for property {@link #getTableTemplateSelection TableTemplateSelection}.
|
|
796
|
+
*
|
|
797
|
+
* Default table template selection
|
|
798
|
+
*
|
|
799
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
800
|
+
*
|
|
801
|
+
* Default value is `TableTemplate.Default`.
|
|
802
|
+
*
|
|
803
|
+
* @since 1.135
|
|
804
|
+
* @experimental As of version 1.135.
|
|
805
|
+
*
|
|
806
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
807
|
+
*/
|
|
808
|
+
setTableTemplateSelection(
|
|
809
|
+
/**
|
|
810
|
+
* New value for property `TableTemplateSelection`
|
|
811
|
+
*/
|
|
812
|
+
sTableTemplateSelection?: String
|
|
813
|
+
): this;
|
|
673
814
|
}
|
|
674
815
|
/**
|
|
675
816
|
* A data provider is an analytical query exposed via an analytical engine and accessed via InA protocol.
|
|
@@ -702,11 +843,6 @@ declare namespace sap {
|
|
|
702
843
|
*/
|
|
703
844
|
AutoFetchEnabled: boolean;
|
|
704
845
|
|
|
705
|
-
/**
|
|
706
|
-
* AxesLayout
|
|
707
|
-
*/
|
|
708
|
-
AxesLayout: /* was: sap.sac.df.model.AxesLayout */ any;
|
|
709
|
-
|
|
710
846
|
/**
|
|
711
847
|
* DataSourceInfo
|
|
712
848
|
*/
|
|
@@ -864,13 +1000,6 @@ declare namespace sap {
|
|
|
864
1000
|
* Get the property AutoFetchEnabled
|
|
865
1001
|
*/
|
|
866
1002
|
getAutoFetchEnabled(): boolean;
|
|
867
|
-
/**
|
|
868
|
-
* Get axis layout
|
|
869
|
-
*
|
|
870
|
-
*
|
|
871
|
-
* @returns Axis layout object
|
|
872
|
-
*/
|
|
873
|
-
getAxesLayout(): /* was: sap.sac.df.model.AxesLayout */ any;
|
|
874
1003
|
/**
|
|
875
1004
|
* Get data source information
|
|
876
1005
|
*
|
|
@@ -938,7 +1067,10 @@ declare namespace sap {
|
|
|
938
1067
|
*
|
|
939
1068
|
* @returns Object of all measures
|
|
940
1069
|
*/
|
|
941
|
-
getMeasures():
|
|
1070
|
+
getMeasures(): Record<
|
|
1071
|
+
string,
|
|
1072
|
+
/* was: sap.sac.df.model.Measure */ any
|
|
1073
|
+
>;
|
|
942
1074
|
/**
|
|
943
1075
|
* Get Measure Structure Dimension
|
|
944
1076
|
*
|
|
@@ -1490,11 +1622,6 @@ declare namespace sap {
|
|
|
1490
1622
|
*/
|
|
1491
1623
|
Messages: sap.ui.core.message.Message[];
|
|
1492
1624
|
|
|
1493
|
-
/**
|
|
1494
|
-
* Model pointer
|
|
1495
|
-
*/
|
|
1496
|
-
ModelPointer: String;
|
|
1497
|
-
|
|
1498
1625
|
/**
|
|
1499
1626
|
* Variable Groups
|
|
1500
1627
|
*/
|
|
@@ -1545,7 +1672,9 @@ declare namespace sap {
|
|
|
1545
1672
|
/**
|
|
1546
1673
|
* Datasource name which the data provider is supposed to expose
|
|
1547
1674
|
*/
|
|
1548
|
-
sDataSourceName:
|
|
1675
|
+
sDataSourceName:
|
|
1676
|
+
| sap.sac.df.model.DataProvider.Configuration
|
|
1677
|
+
| string,
|
|
1549
1678
|
/**
|
|
1550
1679
|
* System name
|
|
1551
1680
|
*/
|
|
@@ -1691,6 +1820,7 @@ declare namespace sap {
|
|
|
1691
1820
|
/**
|
|
1692
1821
|
* Get grid styling template registry
|
|
1693
1822
|
*
|
|
1823
|
+
* @deprecated As of version 1.135. the concept has been discarded.
|
|
1694
1824
|
*
|
|
1695
1825
|
* @returns sap.sac.df.model.extentsions.styling.GridStylingTemplateRegistry
|
|
1696
1826
|
*/
|
|
@@ -2173,7 +2303,44 @@ declare namespace sap {
|
|
|
2173
2303
|
* @since 1.132
|
|
2174
2304
|
* @experimental As of version 1.132.
|
|
2175
2305
|
*/
|
|
2176
|
-
enum StylingPanelItem {
|
|
2306
|
+
enum StylingPanelItem {
|
|
2307
|
+
/**
|
|
2308
|
+
* Conditional Formatting
|
|
2309
|
+
*/
|
|
2310
|
+
ConditionalFormatting = "ConditionalFormatting",
|
|
2311
|
+
/**
|
|
2312
|
+
* Number Formatting
|
|
2313
|
+
*/
|
|
2314
|
+
NumberFormatting = "NumberFormatting",
|
|
2315
|
+
/**
|
|
2316
|
+
* Table Properties
|
|
2317
|
+
*/
|
|
2318
|
+
TableProperties = "TableProperties",
|
|
2319
|
+
}
|
|
2320
|
+
/**
|
|
2321
|
+
* Item of the styling panel
|
|
2322
|
+
*
|
|
2323
|
+
* @since 1.135
|
|
2324
|
+
* @experimental As of version 1.135.
|
|
2325
|
+
*/
|
|
2326
|
+
enum TableTemplate {
|
|
2327
|
+
/**
|
|
2328
|
+
* Basic
|
|
2329
|
+
*/
|
|
2330
|
+
Basic = "Basic",
|
|
2331
|
+
/**
|
|
2332
|
+
* Default
|
|
2333
|
+
*/
|
|
2334
|
+
Default = "Default",
|
|
2335
|
+
/**
|
|
2336
|
+
* Financial
|
|
2337
|
+
*/
|
|
2338
|
+
Financial = "Financial",
|
|
2339
|
+
/**
|
|
2340
|
+
* Report
|
|
2341
|
+
*/
|
|
2342
|
+
Report = "Report",
|
|
2343
|
+
}
|
|
2177
2344
|
}
|
|
2178
2345
|
|
|
2179
2346
|
/**
|
|
@@ -2228,6 +2395,10 @@ declare namespace sap {
|
|
|
2228
2395
|
* Ina Model
|
|
2229
2396
|
*/
|
|
2230
2397
|
InAModel = "InAModel",
|
|
2398
|
+
/**
|
|
2399
|
+
* Insight (widget definition)
|
|
2400
|
+
*/
|
|
2401
|
+
Insight = "Insight",
|
|
2231
2402
|
/**
|
|
2232
2403
|
* Query
|
|
2233
2404
|
*/
|
|
@@ -2260,6 +2431,38 @@ declare namespace sap {
|
|
|
2260
2431
|
*/
|
|
2261
2432
|
ReadWrite = "READ_WRITE",
|
|
2262
2433
|
}
|
|
2434
|
+
/**
|
|
2435
|
+
* Semantic Role of a dimension member
|
|
2436
|
+
*
|
|
2437
|
+
* @since 1.135
|
|
2438
|
+
* @experimental As of version 1.135.
|
|
2439
|
+
*/
|
|
2440
|
+
enum SemanticRole {
|
|
2441
|
+
/**
|
|
2442
|
+
* Absolute Variance
|
|
2443
|
+
*/
|
|
2444
|
+
AbsoluteVariance = "AbsoluteVariance",
|
|
2445
|
+
/**
|
|
2446
|
+
* Actual Data
|
|
2447
|
+
*/
|
|
2448
|
+
Actual = "Actual",
|
|
2449
|
+
/**
|
|
2450
|
+
* Budget Data
|
|
2451
|
+
*/
|
|
2452
|
+
Budget = "Budget",
|
|
2453
|
+
/**
|
|
2454
|
+
* Forecast Data
|
|
2455
|
+
*/
|
|
2456
|
+
Forecast = "Forecast",
|
|
2457
|
+
/**
|
|
2458
|
+
* Percentage Variance
|
|
2459
|
+
*/
|
|
2460
|
+
PercentageVariance = "PercentageVariance",
|
|
2461
|
+
/**
|
|
2462
|
+
* Previous Data
|
|
2463
|
+
*/
|
|
2464
|
+
Previous = "Previous",
|
|
2465
|
+
}
|
|
2263
2466
|
/**
|
|
2264
2467
|
* Sort Direction
|
|
2265
2468
|
*
|
|
@@ -2408,379 +2611,138 @@ declare namespace sap {
|
|
|
2408
2611
|
}
|
|
2409
2612
|
|
|
2410
2613
|
/**
|
|
2411
|
-
* Describes the settings that can be provided to the
|
|
2614
|
+
* Describes the settings that can be provided to the Grid constructor.
|
|
2412
2615
|
*
|
|
2413
|
-
* @
|
|
2414
|
-
* @experimental
|
|
2616
|
+
* @experimental As of version 1.129.
|
|
2415
2617
|
*/
|
|
2416
|
-
interface $
|
|
2618
|
+
interface $GridSettings extends sap.ui.core.$ControlSettings {
|
|
2417
2619
|
/**
|
|
2418
|
-
*
|
|
2620
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2419
2621
|
*/
|
|
2420
|
-
|
|
2622
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2421
2623
|
|
|
2422
2624
|
/**
|
|
2423
|
-
*
|
|
2625
|
+
* Show / hide status bar
|
|
2424
2626
|
*/
|
|
2425
|
-
|
|
2627
|
+
showStatusBar?:
|
|
2426
2628
|
| boolean
|
|
2427
2629
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2428
2630
|
| `{${string}}`;
|
|
2429
2631
|
|
|
2430
2632
|
/**
|
|
2431
|
-
*
|
|
2432
|
-
*
|
|
2433
|
-
* @deprecated As of version 1.124. the concept has been discarded. Refreshing the data is handled by the
|
|
2434
|
-
* data provider.
|
|
2633
|
+
* Show / hide title
|
|
2435
2634
|
*/
|
|
2436
|
-
|
|
2635
|
+
showTitle?:
|
|
2437
2636
|
| boolean
|
|
2438
2637
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2439
2638
|
| `{${string}}`;
|
|
2440
2639
|
|
|
2441
2640
|
/**
|
|
2442
|
-
*
|
|
2641
|
+
* Title
|
|
2443
2642
|
*/
|
|
2444
|
-
|
|
2445
|
-
| string
|
|
2446
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2643
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2447
2644
|
|
|
2448
2645
|
/**
|
|
2449
|
-
*
|
|
2646
|
+
* Fires on cell click event
|
|
2450
2647
|
*/
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2454
|
-
| `{${string}}`;
|
|
2648
|
+
onCellClick?: (oEvent: Grid$OnCellClickEvent) => void;
|
|
2649
|
+
}
|
|
2455
2650
|
|
|
2651
|
+
/**
|
|
2652
|
+
* Describes the settings that can be provided to the StylingPanel constructor.
|
|
2653
|
+
*
|
|
2654
|
+
* @experimental As of version 1.129.
|
|
2655
|
+
*/
|
|
2656
|
+
interface $StylingPanelSettings extends sap.ui.core.$ControlSettings {
|
|
2456
2657
|
/**
|
|
2457
|
-
*
|
|
2658
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2458
2659
|
*/
|
|
2459
|
-
|
|
2660
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2661
|
+
}
|
|
2460
2662
|
|
|
2663
|
+
/**
|
|
2664
|
+
* Parameters of the Grid#onCellClick event.
|
|
2665
|
+
*/
|
|
2666
|
+
interface Grid$OnCellClickEventParameters {
|
|
2461
2667
|
/**
|
|
2462
|
-
*
|
|
2668
|
+
* Cell context
|
|
2463
2669
|
*/
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2467
|
-
| `{${string}}`;
|
|
2670
|
+
cellContext?: object;
|
|
2671
|
+
}
|
|
2468
2672
|
|
|
2673
|
+
/**
|
|
2674
|
+
* DataAnalyzer A control to display multi-dimensional data
|
|
2675
|
+
*
|
|
2676
|
+
* @experimental As of version 1.132.
|
|
2677
|
+
*/
|
|
2678
|
+
class DataAnalyzer extends sap.ui.core.Control {
|
|
2469
2679
|
/**
|
|
2470
|
-
*
|
|
2680
|
+
* Constructor for a new `DataAnalyzer` control.
|
|
2681
|
+
*
|
|
2682
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2683
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2684
|
+
* of the syntax of the settings object.
|
|
2471
2685
|
*/
|
|
2472
|
-
|
|
2473
|
-
| sap.ui.core.CSSSize
|
|
2474
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2475
|
-
| `{${string}}`;
|
|
2686
|
+
constructor();
|
|
2476
2687
|
|
|
2477
2688
|
/**
|
|
2478
|
-
*
|
|
2689
|
+
* Creates a new subclass of class sap.sac.df.DataAnalyzer with name `sClassName` and enriches it with the
|
|
2690
|
+
* information contained in `oClassInfo`.
|
|
2691
|
+
*
|
|
2692
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2693
|
+
*
|
|
2694
|
+
*
|
|
2695
|
+
* @returns Created class / constructor function
|
|
2479
2696
|
*/
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2697
|
+
static extend<T extends Record<string, unknown>>(
|
|
2698
|
+
/**
|
|
2699
|
+
* Name of the class being created
|
|
2700
|
+
*/
|
|
2701
|
+
sClassName: string,
|
|
2702
|
+
/**
|
|
2703
|
+
* Object literal with information about the class
|
|
2704
|
+
*/
|
|
2705
|
+
oClassInfo?: sap.ClassInfo<T, sap.sac.df.DataAnalyzer>,
|
|
2706
|
+
/**
|
|
2707
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2708
|
+
* used by this class
|
|
2709
|
+
*/
|
|
2710
|
+
FNMetaImpl?: Function
|
|
2711
|
+
): Function;
|
|
2485
2712
|
/**
|
|
2486
|
-
*
|
|
2713
|
+
* Returns a metadata object for class sap.sac.df.DataAnalyzer.
|
|
2714
|
+
*
|
|
2715
|
+
*
|
|
2716
|
+
* @returns Metadata object describing this class
|
|
2487
2717
|
*/
|
|
2488
|
-
|
|
2489
|
-
| boolean
|
|
2490
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2491
|
-
| `{${string}}`;
|
|
2492
|
-
|
|
2718
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2493
2719
|
/**
|
|
2494
|
-
*
|
|
2720
|
+
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
2721
|
+
*
|
|
2722
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2723
|
+
*
|
|
2724
|
+
*
|
|
2725
|
+
* @returns Value of property `metaPath`
|
|
2495
2726
|
*/
|
|
2496
|
-
|
|
2497
|
-
| boolean
|
|
2498
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2499
|
-
| `{${string}}`;
|
|
2500
|
-
|
|
2727
|
+
getMetaPath(): string;
|
|
2501
2728
|
/**
|
|
2502
|
-
*
|
|
2729
|
+
* Gets current value of property {@link #getSelectedPanel selectedPanel}.
|
|
2730
|
+
*
|
|
2731
|
+
* Selected panel item
|
|
2732
|
+
*
|
|
2733
|
+
*
|
|
2734
|
+
* @returns Value of property `selectedPanel`
|
|
2503
2735
|
*/
|
|
2504
|
-
|
|
2505
|
-
| boolean
|
|
2506
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2507
|
-
| `{${string}}`;
|
|
2508
|
-
|
|
2736
|
+
getSelectedPanel(): sap.sac.df.types.DataAnalyzerPanelName;
|
|
2509
2737
|
/**
|
|
2510
|
-
*
|
|
2738
|
+
* Gets current value of property {@link #getShowVisualizationType showVisualizationType}.
|
|
2739
|
+
*
|
|
2740
|
+
* Show visualization type
|
|
2741
|
+
*
|
|
2742
|
+
*
|
|
2743
|
+
* @returns Value of property `showVisualizationType`
|
|
2511
2744
|
*/
|
|
2512
|
-
|
|
2513
|
-
| boolean
|
|
2514
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2515
|
-
| `{${string}}`;
|
|
2516
|
-
|
|
2517
|
-
/**
|
|
2518
|
-
* Sets if the filter of FlexAnalysis is hidden
|
|
2519
|
-
*/
|
|
2520
|
-
hideFilterLine?:
|
|
2521
|
-
| boolean
|
|
2522
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2523
|
-
| `{${string}}`;
|
|
2524
|
-
|
|
2525
|
-
/**
|
|
2526
|
-
* Sets if the side navigation bar of FlexAnalysis is hidden
|
|
2527
|
-
*/
|
|
2528
|
-
hideSideNavigation?:
|
|
2529
|
-
| boolean
|
|
2530
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2531
|
-
| `{${string}}`;
|
|
2532
|
-
|
|
2533
|
-
/**
|
|
2534
|
-
* Sets if the landing page of FlexAnalysis is hidden
|
|
2535
|
-
*/
|
|
2536
|
-
hideLandingPage?:
|
|
2537
|
-
| boolean
|
|
2538
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2539
|
-
| `{${string}}`;
|
|
2540
|
-
|
|
2541
|
-
/**
|
|
2542
|
-
* System to take data from. If not set or set to "local" current url will be used to determine the system
|
|
2543
|
-
*
|
|
2544
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2545
|
-
*/
|
|
2546
|
-
systemName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2547
|
-
|
|
2548
|
-
/**
|
|
2549
|
-
* Data source (Query name/ View, InA model etc) to be used to get the data from
|
|
2550
|
-
*
|
|
2551
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2552
|
-
*/
|
|
2553
|
-
dataSource?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2554
|
-
|
|
2555
|
-
/**
|
|
2556
|
-
* Type the system to connect to get data
|
|
2557
|
-
*
|
|
2558
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2559
|
-
*/
|
|
2560
|
-
systemType?:
|
|
2561
|
-
| sap.sac.df.types.SystemType
|
|
2562
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2563
|
-
| `{${string}}`;
|
|
2564
|
-
|
|
2565
|
-
/**
|
|
2566
|
-
* Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
|
|
2567
|
-
*/
|
|
2568
|
-
keepAliveInterval?:
|
|
2569
|
-
| int
|
|
2570
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2571
|
-
| `{${string}}`;
|
|
2572
|
-
|
|
2573
|
-
/**
|
|
2574
|
-
* Client Identifier to be used for underlying InA queries
|
|
2575
|
-
*
|
|
2576
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2577
|
-
*/
|
|
2578
|
-
clientIdentifier?:
|
|
2579
|
-
| string
|
|
2580
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2581
|
-
|
|
2582
|
-
/**
|
|
2583
|
-
* Name of the Data Provider from the corresponding MultiDimModel to be used
|
|
2584
|
-
*
|
|
2585
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2586
|
-
*/
|
|
2587
|
-
dataProvider?:
|
|
2588
|
-
| any
|
|
2589
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2590
|
-
| `{${string}}`;
|
|
2591
|
-
|
|
2592
|
-
/**
|
|
2593
|
-
* Id of the MultiDimModel to use
|
|
2594
|
-
*
|
|
2595
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
2596
|
-
*/
|
|
2597
|
-
multiDimModelId?:
|
|
2598
|
-
| string
|
|
2599
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2600
|
-
|
|
2601
|
-
/**
|
|
2602
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
2603
|
-
*/
|
|
2604
|
-
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2605
|
-
|
|
2606
|
-
/**
|
|
2607
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
2608
|
-
* corresponding MultiDimModel
|
|
2609
|
-
*/
|
|
2610
|
-
implicitVariableHandling?:
|
|
2611
|
-
| boolean
|
|
2612
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2613
|
-
| `{${string}}`;
|
|
2614
|
-
|
|
2615
|
-
/**
|
|
2616
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
2617
|
-
* corresponding MultiDimModel
|
|
2618
|
-
*/
|
|
2619
|
-
styleTemplateName?:
|
|
2620
|
-
| string
|
|
2621
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2622
|
-
|
|
2623
|
-
/**
|
|
2624
|
-
* Custom panels for the flexible analysis control
|
|
2625
|
-
*
|
|
2626
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
2627
|
-
* data provider.
|
|
2628
|
-
*/
|
|
2629
|
-
customPanels?:
|
|
2630
|
-
| sap.ui.core.Control[]
|
|
2631
|
-
| sap.ui.core.Control
|
|
2632
|
-
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2633
|
-
| `{${string}}`;
|
|
2634
|
-
|
|
2635
|
-
/**
|
|
2636
|
-
* Fires on cell click event
|
|
2637
|
-
*/
|
|
2638
|
-
onCellClick?: (oEvent: FlexAnalysis$OnCellClickEvent) => void;
|
|
2639
|
-
}
|
|
2640
|
-
|
|
2641
|
-
/**
|
|
2642
|
-
* Describes the settings that can be provided to the Grid constructor.
|
|
2643
|
-
*
|
|
2644
|
-
* @experimental As of version 1.129.
|
|
2645
|
-
*/
|
|
2646
|
-
interface $GridSettings extends sap.ui.core.$ControlSettings {
|
|
2647
|
-
/**
|
|
2648
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
2649
|
-
*/
|
|
2650
|
-
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2651
|
-
|
|
2652
|
-
/**
|
|
2653
|
-
* Show / hide status bar
|
|
2654
|
-
*/
|
|
2655
|
-
showStatusBar?:
|
|
2656
|
-
| boolean
|
|
2657
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2658
|
-
| `{${string}}`;
|
|
2659
|
-
|
|
2660
|
-
/**
|
|
2661
|
-
* Show / hide title
|
|
2662
|
-
*/
|
|
2663
|
-
showTitle?:
|
|
2664
|
-
| boolean
|
|
2665
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2666
|
-
| `{${string}}`;
|
|
2667
|
-
|
|
2668
|
-
/**
|
|
2669
|
-
* Title
|
|
2670
|
-
*/
|
|
2671
|
-
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2672
|
-
|
|
2673
|
-
/**
|
|
2674
|
-
* Fires on cell click event
|
|
2675
|
-
*/
|
|
2676
|
-
onCellClick?: (oEvent: Grid$OnCellClickEvent) => void;
|
|
2677
|
-
}
|
|
2678
|
-
|
|
2679
|
-
/**
|
|
2680
|
-
* Describes the settings that can be provided to the StylingPanel constructor.
|
|
2681
|
-
*
|
|
2682
|
-
* @experimental As of version 1.129.
|
|
2683
|
-
*/
|
|
2684
|
-
interface $StylingPanelSettings extends sap.ui.core.$ControlSettings {
|
|
2685
|
-
/**
|
|
2686
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
2687
|
-
*/
|
|
2688
|
-
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2689
|
-
}
|
|
2690
|
-
|
|
2691
|
-
/**
|
|
2692
|
-
* Parameters of the FlexAnalysis#onCellClick event.
|
|
2693
|
-
*/
|
|
2694
|
-
interface FlexAnalysis$OnCellClickEventParameters {
|
|
2695
|
-
/**
|
|
2696
|
-
* Cell context
|
|
2697
|
-
*/
|
|
2698
|
-
cellContext?: object;
|
|
2699
|
-
}
|
|
2700
|
-
|
|
2701
|
-
/**
|
|
2702
|
-
* Parameters of the Grid#onCellClick event.
|
|
2703
|
-
*/
|
|
2704
|
-
interface Grid$OnCellClickEventParameters {
|
|
2705
|
-
/**
|
|
2706
|
-
* Cell context
|
|
2707
|
-
*/
|
|
2708
|
-
cellContext?: object;
|
|
2709
|
-
}
|
|
2710
|
-
|
|
2711
|
-
/**
|
|
2712
|
-
* FlexAnalysis A control to display multi-dimensional data
|
|
2713
|
-
*
|
|
2714
|
-
* @experimental As of version 1.132.
|
|
2715
|
-
*/
|
|
2716
|
-
class DataAnalyzer extends sap.ui.core.Control {
|
|
2717
|
-
/**
|
|
2718
|
-
* Constructor for a new `DataAnalyzer` control.
|
|
2719
|
-
*
|
|
2720
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
2721
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
2722
|
-
* of the syntax of the settings object.
|
|
2723
|
-
*/
|
|
2724
|
-
constructor();
|
|
2725
|
-
|
|
2726
|
-
/**
|
|
2727
|
-
* Creates a new subclass of class sap.sac.df.DataAnalyzer with name `sClassName` and enriches it with the
|
|
2728
|
-
* information contained in `oClassInfo`.
|
|
2729
|
-
*
|
|
2730
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2731
|
-
*
|
|
2732
|
-
*
|
|
2733
|
-
* @returns Created class / constructor function
|
|
2734
|
-
*/
|
|
2735
|
-
static extend<T extends Record<string, unknown>>(
|
|
2736
|
-
/**
|
|
2737
|
-
* Name of the class being created
|
|
2738
|
-
*/
|
|
2739
|
-
sClassName: string,
|
|
2740
|
-
/**
|
|
2741
|
-
* Object literal with information about the class
|
|
2742
|
-
*/
|
|
2743
|
-
oClassInfo?: sap.ClassInfo<T, sap.sac.df.DataAnalyzer>,
|
|
2744
|
-
/**
|
|
2745
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2746
|
-
* used by this class
|
|
2747
|
-
*/
|
|
2748
|
-
FNMetaImpl?: Function
|
|
2749
|
-
): Function;
|
|
2750
|
-
/**
|
|
2751
|
-
* Returns a metadata object for class sap.sac.df.DataAnalyzer.
|
|
2752
|
-
*
|
|
2753
|
-
*
|
|
2754
|
-
* @returns Metadata object describing this class
|
|
2755
|
-
*/
|
|
2756
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2757
|
-
/**
|
|
2758
|
-
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
2759
|
-
*
|
|
2760
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
2761
|
-
*
|
|
2762
|
-
*
|
|
2763
|
-
* @returns Value of property `metaPath`
|
|
2764
|
-
*/
|
|
2765
|
-
getMetaPath(): string;
|
|
2766
|
-
/**
|
|
2767
|
-
* Gets current value of property {@link #getSelectedPanel selectedPanel}.
|
|
2768
|
-
*
|
|
2769
|
-
* Selected panel item
|
|
2770
|
-
*
|
|
2771
|
-
*
|
|
2772
|
-
* @returns Value of property `selectedPanel`
|
|
2773
|
-
*/
|
|
2774
|
-
getSelectedPanel(): sap.sac.df.types.DataAnalyzerPanelName;
|
|
2775
|
-
/**
|
|
2776
|
-
* Gets current value of property {@link #getShowVisualizationType showVisualizationType}.
|
|
2777
|
-
*
|
|
2778
|
-
* Show visualization type
|
|
2779
|
-
*
|
|
2780
|
-
*
|
|
2781
|
-
* @returns Value of property `showVisualizationType`
|
|
2782
|
-
*/
|
|
2783
|
-
getShowVisualizationType(): boolean;
|
|
2745
|
+
getShowVisualizationType(): boolean;
|
|
2784
2746
|
/**
|
|
2785
2747
|
* Sets a new value for property {@link #getMetaPath metaPath}.
|
|
2786
2748
|
*
|
|
@@ -3231,34 +3193,23 @@ declare namespace sap {
|
|
|
3231
3193
|
): this;
|
|
3232
3194
|
}
|
|
3233
3195
|
/**
|
|
3234
|
-
*
|
|
3235
|
-
*
|
|
3236
|
-
* Overview:
|
|
3237
|
-
*
|
|
3238
|
-
* The user can view the data in a Table, navigate in the data via a context menu or builder panels The
|
|
3239
|
-
* data source that the FlexAnalysis consumes or renders has to be provided as a property value.
|
|
3196
|
+
* Grid A grid control for displaying multi-dimensional data
|
|
3240
3197
|
*
|
|
3241
|
-
* @
|
|
3242
|
-
* @experimental
|
|
3198
|
+
* @experimental As of version 1.129.
|
|
3243
3199
|
*/
|
|
3244
|
-
class
|
|
3200
|
+
class Grid extends sap.ui.core.Control {
|
|
3245
3201
|
/**
|
|
3246
|
-
* Constructor for a new `
|
|
3202
|
+
* Constructor for a new `Grid` control.
|
|
3247
3203
|
*
|
|
3248
3204
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
3249
3205
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
3250
3206
|
* of the syntax of the settings object.
|
|
3251
3207
|
*/
|
|
3252
|
-
constructor(
|
|
3253
|
-
/**
|
|
3254
|
-
* ID for the new control, generated automatically if no ID is given
|
|
3255
|
-
*/
|
|
3256
|
-
sId?: string
|
|
3257
|
-
);
|
|
3208
|
+
constructor();
|
|
3258
3209
|
|
|
3259
3210
|
/**
|
|
3260
|
-
* Creates a new subclass of class sap.sac.df.
|
|
3261
|
-
*
|
|
3211
|
+
* Creates a new subclass of class sap.sac.df.Grid with name `sClassName` and enriches it with the information
|
|
3212
|
+
* contained in `oClassInfo`.
|
|
3262
3213
|
*
|
|
3263
3214
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3264
3215
|
*
|
|
@@ -3273,7 +3224,7 @@ declare namespace sap {
|
|
|
3273
3224
|
/**
|
|
3274
3225
|
* Object literal with information about the class
|
|
3275
3226
|
*/
|
|
3276
|
-
oClassInfo?: sap.ClassInfo<T, sap.sac.df.
|
|
3227
|
+
oClassInfo?: sap.ClassInfo<T, sap.sac.df.Grid>,
|
|
3277
3228
|
/**
|
|
3278
3229
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3279
3230
|
* used by this class
|
|
@@ -3281,31 +3232,17 @@ declare namespace sap {
|
|
|
3281
3232
|
FNMetaImpl?: Function
|
|
3282
3233
|
): Function;
|
|
3283
3234
|
/**
|
|
3284
|
-
* Returns a metadata object for class sap.sac.df.
|
|
3235
|
+
* Returns a metadata object for class sap.sac.df.Grid.
|
|
3285
3236
|
*
|
|
3286
3237
|
*
|
|
3287
3238
|
* @returns Metadata object describing this class
|
|
3288
3239
|
*/
|
|
3289
3240
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3290
3241
|
/**
|
|
3291
|
-
*
|
|
3292
|
-
*
|
|
3293
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3294
|
-
* data provider.
|
|
3295
|
-
*
|
|
3296
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3297
|
-
*/
|
|
3298
|
-
addCustomPanel(
|
|
3299
|
-
/**
|
|
3300
|
-
* The customPanel to add; if empty, nothing is inserted
|
|
3301
|
-
*/
|
|
3302
|
-
oCustomPanel: sap.ui.core.Control
|
|
3303
|
-
): this;
|
|
3304
|
-
/**
|
|
3305
|
-
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.FlexAnalysis`.
|
|
3242
|
+
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
3306
3243
|
*
|
|
3307
3244
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3308
|
-
* otherwise it will be bound to this `sap.sac.df.
|
|
3245
|
+
* otherwise it will be bound to this `sap.sac.df.Grid` itself.
|
|
3309
3246
|
*
|
|
3310
3247
|
* Fires on cell click event
|
|
3311
3248
|
*
|
|
@@ -3321,17 +3258,17 @@ declare namespace sap {
|
|
|
3321
3258
|
/**
|
|
3322
3259
|
* The function to be called when the event occurs
|
|
3323
3260
|
*/
|
|
3324
|
-
fnFunction: (p1:
|
|
3261
|
+
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
3325
3262
|
/**
|
|
3326
|
-
* Context object to call the event handler with. Defaults to this `sap.sac.df.
|
|
3263
|
+
* Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
|
|
3327
3264
|
*/
|
|
3328
3265
|
oListener?: object
|
|
3329
3266
|
): this;
|
|
3330
3267
|
/**
|
|
3331
|
-
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.
|
|
3268
|
+
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
3332
3269
|
*
|
|
3333
3270
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3334
|
-
* otherwise it will be bound to this `sap.sac.df.
|
|
3271
|
+
* otherwise it will be bound to this `sap.sac.df.Grid` itself.
|
|
3335
3272
|
*
|
|
3336
3273
|
* Fires on cell click event
|
|
3337
3274
|
*
|
|
@@ -3342,999 +3279,34 @@ declare namespace sap {
|
|
|
3342
3279
|
/**
|
|
3343
3280
|
* The function to be called when the event occurs
|
|
3344
3281
|
*/
|
|
3345
|
-
fnFunction: (p1:
|
|
3282
|
+
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
3346
3283
|
/**
|
|
3347
|
-
* Context object to call the event handler with. Defaults to this `sap.sac.df.
|
|
3284
|
+
* Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
|
|
3348
3285
|
*/
|
|
3349
3286
|
oListener?: object
|
|
3350
3287
|
): this;
|
|
3351
3288
|
/**
|
|
3352
|
-
*
|
|
3289
|
+
* Detaches event handler `fnFunction` from the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
3353
3290
|
*
|
|
3354
|
-
*
|
|
3355
|
-
* of the possible properties of `oBindingInfo`
|
|
3291
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
3356
3292
|
*
|
|
3357
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3358
3293
|
*
|
|
3359
3294
|
* @returns Reference to `this` in order to allow method chaining
|
|
3360
3295
|
*/
|
|
3361
|
-
|
|
3296
|
+
detachOnCellClick(
|
|
3362
3297
|
/**
|
|
3363
|
-
* The
|
|
3298
|
+
* The function to be called, when the event occurs
|
|
3299
|
+
*/
|
|
3300
|
+
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
3301
|
+
/**
|
|
3302
|
+
* Context object on which the given function had to be called
|
|
3364
3303
|
*/
|
|
3365
|
-
|
|
3304
|
+
oListener?: object
|
|
3366
3305
|
): this;
|
|
3367
3306
|
/**
|
|
3368
|
-
*
|
|
3307
|
+
* Fires event {@link #event:onCellClick onCellClick} to attached listeners.
|
|
3369
3308
|
*
|
|
3370
|
-
* @
|
|
3371
|
-
* data provider.
|
|
3372
|
-
*
|
|
3373
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3374
|
-
*/
|
|
3375
|
-
destroyCustomPanels(): this;
|
|
3376
|
-
/**
|
|
3377
|
-
* Detaches event handler `fnFunction` from the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.FlexAnalysis`.
|
|
3378
|
-
*
|
|
3379
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
3380
|
-
*
|
|
3381
|
-
*
|
|
3382
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3383
|
-
*/
|
|
3384
|
-
detachOnCellClick(
|
|
3385
|
-
/**
|
|
3386
|
-
* The function to be called, when the event occurs
|
|
3387
|
-
*/
|
|
3388
|
-
fnFunction: (p1: FlexAnalysis$OnCellClickEvent) => void,
|
|
3389
|
-
/**
|
|
3390
|
-
* Context object on which the given function had to be called
|
|
3391
|
-
*/
|
|
3392
|
-
oListener?: object
|
|
3393
|
-
): this;
|
|
3394
|
-
/**
|
|
3395
|
-
* Fires event {@link #event:onCellClick onCellClick} to attached listeners.
|
|
3396
|
-
*
|
|
3397
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3398
|
-
*
|
|
3399
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3400
|
-
*/
|
|
3401
|
-
fireOnCellClick(
|
|
3402
|
-
/**
|
|
3403
|
-
* Parameters to pass along with the event
|
|
3404
|
-
*/
|
|
3405
|
-
mParameters?: sap.sac.df.FlexAnalysis$OnCellClickEventParameters
|
|
3406
|
-
): this;
|
|
3407
|
-
/**
|
|
3408
|
-
* Gets current value of property {@link #getAutoUpdate autoUpdate}.
|
|
3409
|
-
*
|
|
3410
|
-
* Indicates if Flexible Analysis component automatically requests the ResultSet for the shown data source
|
|
3411
|
-
*
|
|
3412
|
-
* Default value is `true`.
|
|
3413
|
-
*
|
|
3414
|
-
* @deprecated As of version 1.124. the concept has been discarded. Refreshing the data is handled by the
|
|
3415
|
-
* data provider.
|
|
3416
|
-
*
|
|
3417
|
-
* @returns Value of property `autoUpdate`
|
|
3418
|
-
*/
|
|
3419
|
-
getAutoUpdate(): boolean;
|
|
3420
|
-
/**
|
|
3421
|
-
* Gets current value of property {@link #getClientIdentifier clientIdentifier}.
|
|
3422
|
-
*
|
|
3423
|
-
* Client Identifier to be used for underlying InA queries
|
|
3424
|
-
*
|
|
3425
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3426
|
-
*
|
|
3427
|
-
* @returns Value of property `clientIdentifier`
|
|
3428
|
-
*/
|
|
3429
|
-
getClientIdentifier(): string;
|
|
3430
|
-
/**
|
|
3431
|
-
* Gets current value of property {@link #getConfigId configId}.
|
|
3432
|
-
*
|
|
3433
|
-
* Configuration Id
|
|
3434
|
-
*
|
|
3435
|
-
*
|
|
3436
|
-
* @returns Value of property `configId`
|
|
3437
|
-
*/
|
|
3438
|
-
getConfigId(): string;
|
|
3439
|
-
/**
|
|
3440
|
-
* Gets current value of property {@link #getConfigObject configObject}.
|
|
3441
|
-
*
|
|
3442
|
-
* JSON object containing the configuration (alternative to configurationURI)
|
|
3443
|
-
*
|
|
3444
|
-
*
|
|
3445
|
-
* @returns Value of property `configObject`
|
|
3446
|
-
*/
|
|
3447
|
-
getConfigObject(): object;
|
|
3448
|
-
/**
|
|
3449
|
-
* Gets current value of property {@link #getConfigurationURI configurationURI}.
|
|
3450
|
-
*
|
|
3451
|
-
* URI of the advanced configuration to be fetched
|
|
3452
|
-
*
|
|
3453
|
-
*
|
|
3454
|
-
* @returns Value of property `configurationURI`
|
|
3455
|
-
*/
|
|
3456
|
-
getConfigurationURI(): string;
|
|
3457
|
-
/**
|
|
3458
|
-
* Gets content of aggregation {@link #getCustomPanels customPanels}.
|
|
3459
|
-
*
|
|
3460
|
-
* Custom panels for the flexible analysis control
|
|
3461
|
-
*
|
|
3462
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3463
|
-
* data provider.
|
|
3464
|
-
*/
|
|
3465
|
-
getCustomPanels(): sap.ui.core.Control[];
|
|
3466
|
-
/**
|
|
3467
|
-
* Gets current value of property {@link #getDataProvider dataProvider}.
|
|
3468
|
-
*
|
|
3469
|
-
* Name of the Data Provider from the corresponding MultiDimModel to be used
|
|
3470
|
-
*
|
|
3471
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3472
|
-
*
|
|
3473
|
-
* @returns Value of property `dataProvider`
|
|
3474
|
-
*/
|
|
3475
|
-
getDataProvider(): any;
|
|
3476
|
-
/**
|
|
3477
|
-
* Gets current value of property {@link #getDataSource dataSource}.
|
|
3478
|
-
*
|
|
3479
|
-
* Data source (Query name/ View, InA model etc) to be used to get the data from
|
|
3480
|
-
*
|
|
3481
|
-
* Default value is `"$datasource"`.
|
|
3482
|
-
*
|
|
3483
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3484
|
-
*
|
|
3485
|
-
* @returns Value of property `dataSource`
|
|
3486
|
-
*/
|
|
3487
|
-
getDataSource(): string;
|
|
3488
|
-
/**
|
|
3489
|
-
* Gets current value of property {@link #getHeight height}.
|
|
3490
|
-
*
|
|
3491
|
-
* Height of the component
|
|
3492
|
-
*
|
|
3493
|
-
* Default value is `"100%"`.
|
|
3494
|
-
*
|
|
3495
|
-
*
|
|
3496
|
-
* @returns Value of property `height`
|
|
3497
|
-
*/
|
|
3498
|
-
getHeight(): sap.ui.core.CSSSize;
|
|
3499
|
-
/**
|
|
3500
|
-
* Gets current value of property {@link #getHideDesignPanel hideDesignPanel}.
|
|
3501
|
-
*
|
|
3502
|
-
* Sets if the Design Panel of FlexAnalysis is hidden
|
|
3503
|
-
*
|
|
3504
|
-
* Default value is `true`.
|
|
3505
|
-
*
|
|
3506
|
-
*
|
|
3507
|
-
* @returns Value of property `hideDesignPanel`
|
|
3508
|
-
*/
|
|
3509
|
-
getHideDesignPanel(): boolean;
|
|
3510
|
-
/**
|
|
3511
|
-
* Gets current value of property {@link #getHideFilterLine hideFilterLine}.
|
|
3512
|
-
*
|
|
3513
|
-
* Sets if the filter of FlexAnalysis is hidden
|
|
3514
|
-
*
|
|
3515
|
-
* Default value is `false`.
|
|
3516
|
-
*
|
|
3517
|
-
*
|
|
3518
|
-
* @returns Value of property `hideFilterLine`
|
|
3519
|
-
*/
|
|
3520
|
-
getHideFilterLine(): boolean;
|
|
3521
|
-
/**
|
|
3522
|
-
* Gets current value of property {@link #getHideLandingPage hideLandingPage}.
|
|
3523
|
-
*
|
|
3524
|
-
* Sets if the landing page of FlexAnalysis is hidden
|
|
3525
|
-
*
|
|
3526
|
-
* Default value is `true`.
|
|
3527
|
-
*
|
|
3528
|
-
*
|
|
3529
|
-
* @returns Value of property `hideLandingPage`
|
|
3530
|
-
*/
|
|
3531
|
-
getHideLandingPage(): boolean;
|
|
3532
|
-
/**
|
|
3533
|
-
* Gets current value of property {@link #getHideMenuBar hideMenuBar}.
|
|
3534
|
-
*
|
|
3535
|
-
* Sets if the menu bar of FlexAnalysis is hidden
|
|
3536
|
-
*
|
|
3537
|
-
* Default value is `true`.
|
|
3538
|
-
*
|
|
3539
|
-
*
|
|
3540
|
-
* @returns Value of property `hideMenuBar`
|
|
3541
|
-
*/
|
|
3542
|
-
getHideMenuBar(): boolean;
|
|
3543
|
-
/**
|
|
3544
|
-
* Gets current value of property {@link #getHideSideNavigation hideSideNavigation}.
|
|
3545
|
-
*
|
|
3546
|
-
* Sets if the side navigation bar of FlexAnalysis is hidden
|
|
3547
|
-
*
|
|
3548
|
-
* Default value is `false`.
|
|
3549
|
-
*
|
|
3550
|
-
*
|
|
3551
|
-
* @returns Value of property `hideSideNavigation`
|
|
3552
|
-
*/
|
|
3553
|
-
getHideSideNavigation(): boolean;
|
|
3554
|
-
/**
|
|
3555
|
-
* Gets current value of property {@link #getHideStatusBar hideStatusBar}.
|
|
3556
|
-
*
|
|
3557
|
-
* Sets if the status bar of FlexAnalysis is hidden
|
|
3558
|
-
*
|
|
3559
|
-
* Default value is `true`.
|
|
3560
|
-
*
|
|
3561
|
-
*
|
|
3562
|
-
* @returns Value of property `hideStatusBar`
|
|
3563
|
-
*/
|
|
3564
|
-
getHideStatusBar(): boolean;
|
|
3565
|
-
/**
|
|
3566
|
-
* Gets current value of property {@link #getHideStylePanel hideStylePanel}.
|
|
3567
|
-
*
|
|
3568
|
-
* Sets if the Style Panel of FlexAnalysis is hidden
|
|
3569
|
-
*
|
|
3570
|
-
* Default value is `true`.
|
|
3571
|
-
*
|
|
3572
|
-
*
|
|
3573
|
-
* @returns Value of property `hideStylePanel`
|
|
3574
|
-
*/
|
|
3575
|
-
getHideStylePanel(): boolean;
|
|
3576
|
-
/**
|
|
3577
|
-
* Gets current value of property {@link #getHideToolBar hideToolBar}.
|
|
3578
|
-
*
|
|
3579
|
-
* Sets if the toolbar of FlexAnalysis is hidden
|
|
3580
|
-
*
|
|
3581
|
-
* Default value is `true`.
|
|
3582
|
-
*
|
|
3583
|
-
*
|
|
3584
|
-
* @returns Value of property `hideToolBar`
|
|
3585
|
-
*/
|
|
3586
|
-
getHideToolBar(): boolean;
|
|
3587
|
-
/**
|
|
3588
|
-
* Gets current value of property {@link #getImplicitVariableHandling implicitVariableHandling}.
|
|
3589
|
-
*
|
|
3590
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
3591
|
-
* corresponding MultiDimModel
|
|
3592
|
-
*
|
|
3593
|
-
* Default value is `true`.
|
|
3594
|
-
*
|
|
3595
|
-
*
|
|
3596
|
-
* @returns Value of property `implicitVariableHandling`
|
|
3597
|
-
*/
|
|
3598
|
-
getImplicitVariableHandling(): boolean;
|
|
3599
|
-
/**
|
|
3600
|
-
* Gets current value of property {@link #getKeepAliveInterval keepAliveInterval}.
|
|
3601
|
-
*
|
|
3602
|
-
* Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
|
|
3603
|
-
*
|
|
3604
|
-
* Default value is `0`.
|
|
3605
|
-
*
|
|
3606
|
-
*
|
|
3607
|
-
* @returns Value of property `keepAliveInterval`
|
|
3608
|
-
*/
|
|
3609
|
-
getKeepAliveInterval(): int;
|
|
3610
|
-
/**
|
|
3611
|
-
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
3612
|
-
*
|
|
3613
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
3614
|
-
*
|
|
3615
|
-
*
|
|
3616
|
-
* @returns Value of property `metaPath`
|
|
3617
|
-
*/
|
|
3618
|
-
getMetaPath(): string;
|
|
3619
|
-
/**
|
|
3620
|
-
* Gets current value of property {@link #getMultiDimModelId multiDimModelId}.
|
|
3621
|
-
*
|
|
3622
|
-
* Id of the MultiDimModel to use
|
|
3623
|
-
*
|
|
3624
|
-
* Default value is `"om"`.
|
|
3625
|
-
*
|
|
3626
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3627
|
-
*
|
|
3628
|
-
* @returns Value of property `multiDimModelId`
|
|
3629
|
-
*/
|
|
3630
|
-
getMultiDimModelId(): string;
|
|
3631
|
-
/**
|
|
3632
|
-
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
3633
|
-
*
|
|
3634
|
-
* Indicates Flexible Analysis component should display the component title
|
|
3635
|
-
*
|
|
3636
|
-
* Default value is `false`.
|
|
3637
|
-
*
|
|
3638
|
-
*
|
|
3639
|
-
* @returns Value of property `showTitle`
|
|
3640
|
-
*/
|
|
3641
|
-
getShowTitle(): boolean;
|
|
3642
|
-
/**
|
|
3643
|
-
* Gets current value of property {@link #getStyleTemplateName styleTemplateName}.
|
|
3644
|
-
*
|
|
3645
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
3646
|
-
* corresponding MultiDimModel
|
|
3647
|
-
*
|
|
3648
|
-
*
|
|
3649
|
-
* @returns Value of property `styleTemplateName`
|
|
3650
|
-
*/
|
|
3651
|
-
getStyleTemplateName(): string;
|
|
3652
|
-
/**
|
|
3653
|
-
* Gets current value of property {@link #getSystemName systemName}.
|
|
3654
|
-
*
|
|
3655
|
-
* System to take data from. If not set or set to "local" current url will be used to determine the system
|
|
3656
|
-
*
|
|
3657
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3658
|
-
*
|
|
3659
|
-
* @returns Value of property `systemName`
|
|
3660
|
-
*/
|
|
3661
|
-
getSystemName(): string;
|
|
3662
|
-
/**
|
|
3663
|
-
* Gets current value of property {@link #getSystemType systemType}.
|
|
3664
|
-
*
|
|
3665
|
-
* Type the system to connect to get data
|
|
3666
|
-
*
|
|
3667
|
-
* Default value is `BW`.
|
|
3668
|
-
*
|
|
3669
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3670
|
-
*
|
|
3671
|
-
* @returns Value of property `systemType`
|
|
3672
|
-
*/
|
|
3673
|
-
getSystemType(): sap.sac.df.types.SystemType;
|
|
3674
|
-
/**
|
|
3675
|
-
* Gets current value of property {@link #getTitle title}.
|
|
3676
|
-
*
|
|
3677
|
-
* Sets title to be shown in the control. If not set the name of the corresponding back-end query is used
|
|
3678
|
-
*
|
|
3679
|
-
*
|
|
3680
|
-
* @returns Value of property `title`
|
|
3681
|
-
*/
|
|
3682
|
-
getTitle(): string;
|
|
3683
|
-
/**
|
|
3684
|
-
* Gets current value of property {@link #getWidth width}.
|
|
3685
|
-
*
|
|
3686
|
-
* Width of the component
|
|
3687
|
-
*
|
|
3688
|
-
* Default value is `"100%"`.
|
|
3689
|
-
*
|
|
3690
|
-
*
|
|
3691
|
-
* @returns Value of property `width`
|
|
3692
|
-
*/
|
|
3693
|
-
getWidth(): sap.ui.core.CSSSize;
|
|
3694
|
-
/**
|
|
3695
|
-
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCustomPanels customPanels}.
|
|
3696
|
-
* and returns its index if found or -1 otherwise.
|
|
3697
|
-
*
|
|
3698
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3699
|
-
* data provider.
|
|
3700
|
-
*
|
|
3701
|
-
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3702
|
-
*/
|
|
3703
|
-
indexOfCustomPanel(
|
|
3704
|
-
/**
|
|
3705
|
-
* The customPanel whose index is looked for
|
|
3706
|
-
*/
|
|
3707
|
-
oCustomPanel: sap.ui.core.Control
|
|
3708
|
-
): int;
|
|
3709
|
-
/**
|
|
3710
|
-
* Inserts a customPanel into the aggregation {@link #getCustomPanels customPanels}.
|
|
3711
|
-
*
|
|
3712
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3713
|
-
* data provider.
|
|
3714
|
-
*
|
|
3715
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3716
|
-
*/
|
|
3717
|
-
insertCustomPanel(
|
|
3718
|
-
/**
|
|
3719
|
-
* The customPanel to insert; if empty, nothing is inserted
|
|
3720
|
-
*/
|
|
3721
|
-
oCustomPanel: sap.ui.core.Control,
|
|
3722
|
-
/**
|
|
3723
|
-
* The `0`-based index the customPanel should be inserted at; for a negative value of `iIndex`, the customPanel
|
|
3724
|
-
* is inserted at position 0; for a value greater than the current size of the aggregation, the customPanel
|
|
3725
|
-
* is inserted at the last position
|
|
3726
|
-
*/
|
|
3727
|
-
iIndex: int
|
|
3728
|
-
): this;
|
|
3729
|
-
/**
|
|
3730
|
-
* Removes all the controls from the aggregation {@link #getCustomPanels customPanels}.
|
|
3731
|
-
*
|
|
3732
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
3733
|
-
*
|
|
3734
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3735
|
-
* data provider.
|
|
3736
|
-
*
|
|
3737
|
-
* @returns An array of the removed elements (might be empty)
|
|
3738
|
-
*/
|
|
3739
|
-
removeAllCustomPanels(): sap.ui.core.Control[];
|
|
3740
|
-
/**
|
|
3741
|
-
* Removes a customPanel from the aggregation {@link #getCustomPanels customPanels}.
|
|
3742
|
-
*
|
|
3743
|
-
* @deprecated As of version 1.132. the concept has been discarded. Refreshing the data is handled by the
|
|
3744
|
-
* data provider.
|
|
3745
|
-
*
|
|
3746
|
-
* @returns The removed customPanel or `null`
|
|
3747
|
-
*/
|
|
3748
|
-
removeCustomPanel(
|
|
3749
|
-
/**
|
|
3750
|
-
* The customPanel to remove or its index or id
|
|
3751
|
-
*/
|
|
3752
|
-
vCustomPanel: int | string | sap.ui.core.Control
|
|
3753
|
-
): sap.ui.core.Control | null;
|
|
3754
|
-
/**
|
|
3755
|
-
* Sets a new value for property {@link #getAutoUpdate autoUpdate}.
|
|
3756
|
-
*
|
|
3757
|
-
* Indicates if Flexible Analysis component automatically requests the ResultSet for the shown data source
|
|
3758
|
-
*
|
|
3759
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3760
|
-
*
|
|
3761
|
-
* Default value is `true`.
|
|
3762
|
-
*
|
|
3763
|
-
* @deprecated As of version 1.124. the concept has been discarded. Refreshing the data is handled by the
|
|
3764
|
-
* data provider.
|
|
3765
|
-
*
|
|
3766
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3767
|
-
*/
|
|
3768
|
-
setAutoUpdate(
|
|
3769
|
-
/**
|
|
3770
|
-
* New value for property `autoUpdate`
|
|
3771
|
-
*/
|
|
3772
|
-
bAutoUpdate?: boolean
|
|
3773
|
-
): this;
|
|
3774
|
-
/**
|
|
3775
|
-
* Sets a new value for property {@link #getClientIdentifier clientIdentifier}.
|
|
3776
|
-
*
|
|
3777
|
-
* Client Identifier to be used for underlying InA queries
|
|
3778
|
-
*
|
|
3779
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3780
|
-
*
|
|
3781
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3782
|
-
*
|
|
3783
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3784
|
-
*/
|
|
3785
|
-
setClientIdentifier(
|
|
3786
|
-
/**
|
|
3787
|
-
* New value for property `clientIdentifier`
|
|
3788
|
-
*/
|
|
3789
|
-
sClientIdentifier: string
|
|
3790
|
-
): this;
|
|
3791
|
-
/**
|
|
3792
|
-
* Sets a new value for property {@link #getConfigId configId}.
|
|
3793
|
-
*
|
|
3794
|
-
* Configuration Id
|
|
3795
|
-
*
|
|
3796
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3797
|
-
*
|
|
3798
|
-
*
|
|
3799
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3800
|
-
*/
|
|
3801
|
-
setConfigId(
|
|
3802
|
-
/**
|
|
3803
|
-
* New value for property `configId`
|
|
3804
|
-
*/
|
|
3805
|
-
sConfigId: string
|
|
3806
|
-
): this;
|
|
3807
|
-
/**
|
|
3808
|
-
* Sets a new value for property {@link #getConfigObject configObject}.
|
|
3809
|
-
*
|
|
3810
|
-
* JSON object containing the configuration (alternative to configurationURI)
|
|
3811
|
-
*
|
|
3812
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3813
|
-
*
|
|
3814
|
-
*
|
|
3815
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3816
|
-
*/
|
|
3817
|
-
setConfigObject(
|
|
3818
|
-
/**
|
|
3819
|
-
* New value for property `configObject`
|
|
3820
|
-
*/
|
|
3821
|
-
oConfigObject: object
|
|
3822
|
-
): this;
|
|
3823
|
-
/**
|
|
3824
|
-
* Sets a new value for property {@link #getConfigurationURI configurationURI}.
|
|
3825
|
-
*
|
|
3826
|
-
* URI of the advanced configuration to be fetched
|
|
3827
|
-
*
|
|
3828
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3829
|
-
*
|
|
3830
|
-
*
|
|
3831
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3832
|
-
*/
|
|
3833
|
-
setConfigurationURI(
|
|
3834
|
-
/**
|
|
3835
|
-
* New value for property `configurationURI`
|
|
3836
|
-
*/
|
|
3837
|
-
sConfigurationURI: string
|
|
3838
|
-
): this;
|
|
3839
|
-
/**
|
|
3840
|
-
* Sets a new value for property {@link #getDataProvider dataProvider}.
|
|
3841
|
-
*
|
|
3842
|
-
* Name of the Data Provider from the corresponding MultiDimModel to be used
|
|
3843
|
-
*
|
|
3844
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3845
|
-
*
|
|
3846
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3847
|
-
*
|
|
3848
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3849
|
-
*/
|
|
3850
|
-
setDataProvider(
|
|
3851
|
-
/**
|
|
3852
|
-
* New value for property `dataProvider`
|
|
3853
|
-
*/
|
|
3854
|
-
oDataProvider: any
|
|
3855
|
-
): this;
|
|
3856
|
-
/**
|
|
3857
|
-
* Sets a new value for property {@link #getDataSource dataSource}.
|
|
3858
|
-
*
|
|
3859
|
-
* Data source (Query name/ View, InA model etc) to be used to get the data from
|
|
3860
|
-
*
|
|
3861
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3862
|
-
*
|
|
3863
|
-
* Default value is `"$datasource"`.
|
|
3864
|
-
*
|
|
3865
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
3866
|
-
*
|
|
3867
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3868
|
-
*/
|
|
3869
|
-
setDataSource(
|
|
3870
|
-
/**
|
|
3871
|
-
* New value for property `dataSource`
|
|
3872
|
-
*/
|
|
3873
|
-
sDataSource?: string
|
|
3874
|
-
): this;
|
|
3875
|
-
/**
|
|
3876
|
-
* Sets a new value for property {@link #getHeight height}.
|
|
3877
|
-
*
|
|
3878
|
-
* Height of the component
|
|
3879
|
-
*
|
|
3880
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3881
|
-
*
|
|
3882
|
-
* Default value is `"100%"`.
|
|
3883
|
-
*
|
|
3884
|
-
*
|
|
3885
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3886
|
-
*/
|
|
3887
|
-
setHeight(
|
|
3888
|
-
/**
|
|
3889
|
-
* New value for property `height`
|
|
3890
|
-
*/
|
|
3891
|
-
sHeight?: sap.ui.core.CSSSize
|
|
3892
|
-
): this;
|
|
3893
|
-
/**
|
|
3894
|
-
* Sets a new value for property {@link #getHideDesignPanel hideDesignPanel}.
|
|
3895
|
-
*
|
|
3896
|
-
* Sets if the Design Panel of FlexAnalysis is hidden
|
|
3897
|
-
*
|
|
3898
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3899
|
-
*
|
|
3900
|
-
* Default value is `true`.
|
|
3901
|
-
*
|
|
3902
|
-
*
|
|
3903
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3904
|
-
*/
|
|
3905
|
-
setHideDesignPanel(
|
|
3906
|
-
/**
|
|
3907
|
-
* New value for property `hideDesignPanel`
|
|
3908
|
-
*/
|
|
3909
|
-
bHideDesignPanel?: boolean
|
|
3910
|
-
): this;
|
|
3911
|
-
/**
|
|
3912
|
-
* Sets a new value for property {@link #getHideFilterLine hideFilterLine}.
|
|
3913
|
-
*
|
|
3914
|
-
* Sets if the filter of FlexAnalysis is hidden
|
|
3915
|
-
*
|
|
3916
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3917
|
-
*
|
|
3918
|
-
* Default value is `false`.
|
|
3919
|
-
*
|
|
3920
|
-
*
|
|
3921
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3922
|
-
*/
|
|
3923
|
-
setHideFilterLine(
|
|
3924
|
-
/**
|
|
3925
|
-
* New value for property `hideFilterLine`
|
|
3926
|
-
*/
|
|
3927
|
-
bHideFilterLine?: boolean
|
|
3928
|
-
): this;
|
|
3929
|
-
/**
|
|
3930
|
-
* Sets a new value for property {@link #getHideLandingPage hideLandingPage}.
|
|
3931
|
-
*
|
|
3932
|
-
* Sets if the landing page of FlexAnalysis is hidden
|
|
3933
|
-
*
|
|
3934
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3935
|
-
*
|
|
3936
|
-
* Default value is `true`.
|
|
3937
|
-
*
|
|
3938
|
-
*
|
|
3939
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3940
|
-
*/
|
|
3941
|
-
setHideLandingPage(
|
|
3942
|
-
/**
|
|
3943
|
-
* New value for property `hideLandingPage`
|
|
3944
|
-
*/
|
|
3945
|
-
bHideLandingPage?: boolean
|
|
3946
|
-
): this;
|
|
3947
|
-
/**
|
|
3948
|
-
* Sets a new value for property {@link #getHideMenuBar hideMenuBar}.
|
|
3949
|
-
*
|
|
3950
|
-
* Sets if the menu bar of FlexAnalysis is hidden
|
|
3951
|
-
*
|
|
3952
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3953
|
-
*
|
|
3954
|
-
* Default value is `true`.
|
|
3955
|
-
*
|
|
3956
|
-
*
|
|
3957
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3958
|
-
*/
|
|
3959
|
-
setHideMenuBar(
|
|
3960
|
-
/**
|
|
3961
|
-
* New value for property `hideMenuBar`
|
|
3962
|
-
*/
|
|
3963
|
-
bHideMenuBar?: boolean
|
|
3964
|
-
): this;
|
|
3965
|
-
/**
|
|
3966
|
-
* Sets a new value for property {@link #getHideSideNavigation hideSideNavigation}.
|
|
3967
|
-
*
|
|
3968
|
-
* Sets if the side navigation bar of FlexAnalysis is hidden
|
|
3969
|
-
*
|
|
3970
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3971
|
-
*
|
|
3972
|
-
* Default value is `false`.
|
|
3973
|
-
*
|
|
3974
|
-
*
|
|
3975
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3976
|
-
*/
|
|
3977
|
-
setHideSideNavigation(
|
|
3978
|
-
/**
|
|
3979
|
-
* New value for property `hideSideNavigation`
|
|
3980
|
-
*/
|
|
3981
|
-
bHideSideNavigation?: boolean
|
|
3982
|
-
): this;
|
|
3983
|
-
/**
|
|
3984
|
-
* Sets a new value for property {@link #getHideStatusBar hideStatusBar}.
|
|
3985
|
-
*
|
|
3986
|
-
* Sets if the status bar of FlexAnalysis is hidden
|
|
3987
|
-
*
|
|
3988
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3989
|
-
*
|
|
3990
|
-
* Default value is `true`.
|
|
3991
|
-
*
|
|
3992
|
-
*
|
|
3993
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3994
|
-
*/
|
|
3995
|
-
setHideStatusBar(
|
|
3996
|
-
/**
|
|
3997
|
-
* New value for property `hideStatusBar`
|
|
3998
|
-
*/
|
|
3999
|
-
bHideStatusBar?: boolean
|
|
4000
|
-
): this;
|
|
4001
|
-
/**
|
|
4002
|
-
* Sets a new value for property {@link #getHideStylePanel hideStylePanel}.
|
|
4003
|
-
*
|
|
4004
|
-
* Sets if the Style Panel of FlexAnalysis is hidden
|
|
4005
|
-
*
|
|
4006
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4007
|
-
*
|
|
4008
|
-
* Default value is `true`.
|
|
4009
|
-
*
|
|
4010
|
-
*
|
|
4011
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4012
|
-
*/
|
|
4013
|
-
setHideStylePanel(
|
|
4014
|
-
/**
|
|
4015
|
-
* New value for property `hideStylePanel`
|
|
4016
|
-
*/
|
|
4017
|
-
bHideStylePanel?: boolean
|
|
4018
|
-
): this;
|
|
4019
|
-
/**
|
|
4020
|
-
* Sets a new value for property {@link #getHideToolBar hideToolBar}.
|
|
4021
|
-
*
|
|
4022
|
-
* Sets if the toolbar of FlexAnalysis is hidden
|
|
4023
|
-
*
|
|
4024
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4025
|
-
*
|
|
4026
|
-
* Default value is `true`.
|
|
4027
|
-
*
|
|
4028
|
-
*
|
|
4029
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4030
|
-
*/
|
|
4031
|
-
setHideToolBar(
|
|
4032
|
-
/**
|
|
4033
|
-
* New value for property `hideToolBar`
|
|
4034
|
-
*/
|
|
4035
|
-
bHideToolBar?: boolean
|
|
4036
|
-
): this;
|
|
4037
|
-
/**
|
|
4038
|
-
* Sets a new value for property {@link #getImplicitVariableHandling implicitVariableHandling}.
|
|
4039
|
-
*
|
|
4040
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
4041
|
-
* corresponding MultiDimModel
|
|
4042
|
-
*
|
|
4043
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4044
|
-
*
|
|
4045
|
-
* Default value is `true`.
|
|
4046
|
-
*
|
|
4047
|
-
*
|
|
4048
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4049
|
-
*/
|
|
4050
|
-
setImplicitVariableHandling(
|
|
4051
|
-
/**
|
|
4052
|
-
* New value for property `implicitVariableHandling`
|
|
4053
|
-
*/
|
|
4054
|
-
bImplicitVariableHandling?: boolean
|
|
4055
|
-
): this;
|
|
4056
|
-
/**
|
|
4057
|
-
* Sets a new value for property {@link #getKeepAliveInterval keepAliveInterval}.
|
|
4058
|
-
*
|
|
4059
|
-
* Interval to keep the InA session alive. values less than 1 deactivates the keep alive handling
|
|
4060
|
-
*
|
|
4061
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4062
|
-
*
|
|
4063
|
-
* Default value is `0`.
|
|
4064
|
-
*
|
|
4065
|
-
*
|
|
4066
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4067
|
-
*/
|
|
4068
|
-
setKeepAliveInterval(
|
|
4069
|
-
/**
|
|
4070
|
-
* New value for property `keepAliveInterval`
|
|
4071
|
-
*/
|
|
4072
|
-
iKeepAliveInterval?: int
|
|
4073
|
-
): this;
|
|
4074
|
-
/**
|
|
4075
|
-
* Sets a new value for property {@link #getMetaPath metaPath}.
|
|
4076
|
-
*
|
|
4077
|
-
* Defines the relative path to the data provider in the multidimensional model.
|
|
4078
|
-
*
|
|
4079
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4080
|
-
*
|
|
4081
|
-
*
|
|
4082
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4083
|
-
*/
|
|
4084
|
-
setMetaPath(
|
|
4085
|
-
/**
|
|
4086
|
-
* New value for property `metaPath`
|
|
4087
|
-
*/
|
|
4088
|
-
sMetaPath: string
|
|
4089
|
-
): this;
|
|
4090
|
-
/**
|
|
4091
|
-
* Sets a new value for property {@link #getMultiDimModelId multiDimModelId}.
|
|
4092
|
-
*
|
|
4093
|
-
* Id of the MultiDimModel to use
|
|
4094
|
-
*
|
|
4095
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4096
|
-
*
|
|
4097
|
-
* Default value is `"om"`.
|
|
4098
|
-
*
|
|
4099
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
4100
|
-
*
|
|
4101
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4102
|
-
*/
|
|
4103
|
-
setMultiDimModelId(
|
|
4104
|
-
/**
|
|
4105
|
-
* New value for property `multiDimModelId`
|
|
4106
|
-
*/
|
|
4107
|
-
sMultiDimModelId?: string
|
|
4108
|
-
): this;
|
|
4109
|
-
/**
|
|
4110
|
-
* Sets a new value for property {@link #getShowTitle showTitle}.
|
|
4111
|
-
*
|
|
4112
|
-
* Indicates Flexible Analysis component should display the component title
|
|
4113
|
-
*
|
|
4114
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4115
|
-
*
|
|
4116
|
-
* Default value is `false`.
|
|
4117
|
-
*
|
|
4118
|
-
*
|
|
4119
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4120
|
-
*/
|
|
4121
|
-
setShowTitle(
|
|
4122
|
-
/**
|
|
4123
|
-
* New value for property `showTitle`
|
|
4124
|
-
*/
|
|
4125
|
-
bShowTitle?: boolean
|
|
4126
|
-
): this;
|
|
4127
|
-
/**
|
|
4128
|
-
* Sets a new value for property {@link #getStyleTemplateName styleTemplateName}.
|
|
4129
|
-
*
|
|
4130
|
-
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
4131
|
-
* corresponding MultiDimModel
|
|
4132
|
-
*
|
|
4133
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4134
|
-
*
|
|
4135
|
-
*
|
|
4136
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4137
|
-
*/
|
|
4138
|
-
setStyleTemplateName(
|
|
4139
|
-
/**
|
|
4140
|
-
* New value for property `styleTemplateName`
|
|
4141
|
-
*/
|
|
4142
|
-
sStyleTemplateName: string
|
|
4143
|
-
): this;
|
|
4144
|
-
/**
|
|
4145
|
-
* Sets a new value for property {@link #getSystemName systemName}.
|
|
4146
|
-
*
|
|
4147
|
-
* System to take data from. If not set or set to "local" current url will be used to determine the system
|
|
4148
|
-
*
|
|
4149
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4150
|
-
*
|
|
4151
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
4152
|
-
*
|
|
4153
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4154
|
-
*/
|
|
4155
|
-
setSystemName(
|
|
4156
|
-
/**
|
|
4157
|
-
* New value for property `systemName`
|
|
4158
|
-
*/
|
|
4159
|
-
sSystemName: string
|
|
4160
|
-
): this;
|
|
4161
|
-
/**
|
|
4162
|
-
* Sets a new value for property {@link #getSystemType systemType}.
|
|
4163
|
-
*
|
|
4164
|
-
* Type the system to connect to get data
|
|
4165
|
-
*
|
|
4166
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4167
|
-
*
|
|
4168
|
-
* Default value is `BW`.
|
|
4169
|
-
*
|
|
4170
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
4171
|
-
*
|
|
4172
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4173
|
-
*/
|
|
4174
|
-
setSystemType(
|
|
4175
|
-
/**
|
|
4176
|
-
* New value for property `systemType`
|
|
4177
|
-
*/
|
|
4178
|
-
sSystemType?: sap.sac.df.types.SystemType
|
|
4179
|
-
): this;
|
|
4180
|
-
/**
|
|
4181
|
-
* Sets a new value for property {@link #getTitle title}.
|
|
4182
|
-
*
|
|
4183
|
-
* Sets title to be shown in the control. If not set the name of the corresponding back-end query is used
|
|
4184
|
-
*
|
|
4185
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4186
|
-
*
|
|
4187
|
-
*
|
|
4188
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4189
|
-
*/
|
|
4190
|
-
setTitle(
|
|
4191
|
-
/**
|
|
4192
|
-
* New value for property `title`
|
|
4193
|
-
*/
|
|
4194
|
-
sTitle: string
|
|
4195
|
-
): this;
|
|
4196
|
-
/**
|
|
4197
|
-
* Sets a new value for property {@link #getWidth width}.
|
|
4198
|
-
*
|
|
4199
|
-
* Width of the component
|
|
4200
|
-
*
|
|
4201
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4202
|
-
*
|
|
4203
|
-
* Default value is `"100%"`.
|
|
4204
|
-
*
|
|
4205
|
-
*
|
|
4206
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4207
|
-
*/
|
|
4208
|
-
setWidth(
|
|
4209
|
-
/**
|
|
4210
|
-
* New value for property `width`
|
|
4211
|
-
*/
|
|
4212
|
-
sWidth?: sap.ui.core.CSSSize
|
|
4213
|
-
): this;
|
|
4214
|
-
/**
|
|
4215
|
-
* Unbinds property {@link #getDataProvider dataProvider} from model data.
|
|
4216
|
-
*
|
|
4217
|
-
* @deprecated As of version 1.124. Replaced by metaPath property and the corresponding data provider definition.
|
|
4218
|
-
*
|
|
4219
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4220
|
-
*/
|
|
4221
|
-
unbindDataProvider(): this;
|
|
4222
|
-
}
|
|
4223
|
-
/**
|
|
4224
|
-
* Grid A grid control for displaying multi-dimensional data
|
|
4225
|
-
*
|
|
4226
|
-
* @experimental As of version 1.129.
|
|
4227
|
-
*/
|
|
4228
|
-
class Grid extends sap.ui.core.Control {
|
|
4229
|
-
/**
|
|
4230
|
-
* Constructor for a new `Grid` control.
|
|
4231
|
-
*
|
|
4232
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
4233
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
4234
|
-
* of the syntax of the settings object.
|
|
4235
|
-
*/
|
|
4236
|
-
constructor();
|
|
4237
|
-
|
|
4238
|
-
/**
|
|
4239
|
-
* Creates a new subclass of class sap.sac.df.Grid with name `sClassName` and enriches it with the information
|
|
4240
|
-
* contained in `oClassInfo`.
|
|
4241
|
-
*
|
|
4242
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4243
|
-
*
|
|
4244
|
-
*
|
|
4245
|
-
* @returns Created class / constructor function
|
|
4246
|
-
*/
|
|
4247
|
-
static extend<T extends Record<string, unknown>>(
|
|
4248
|
-
/**
|
|
4249
|
-
* Name of the class being created
|
|
4250
|
-
*/
|
|
4251
|
-
sClassName: string,
|
|
4252
|
-
/**
|
|
4253
|
-
* Object literal with information about the class
|
|
4254
|
-
*/
|
|
4255
|
-
oClassInfo?: sap.ClassInfo<T, sap.sac.df.Grid>,
|
|
4256
|
-
/**
|
|
4257
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4258
|
-
* used by this class
|
|
4259
|
-
*/
|
|
4260
|
-
FNMetaImpl?: Function
|
|
4261
|
-
): Function;
|
|
4262
|
-
/**
|
|
4263
|
-
* Returns a metadata object for class sap.sac.df.Grid.
|
|
4264
|
-
*
|
|
4265
|
-
*
|
|
4266
|
-
* @returns Metadata object describing this class
|
|
4267
|
-
*/
|
|
4268
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4269
|
-
/**
|
|
4270
|
-
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
4271
|
-
*
|
|
4272
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
4273
|
-
* otherwise it will be bound to this `sap.sac.df.Grid` itself.
|
|
4274
|
-
*
|
|
4275
|
-
* Fires on cell click event
|
|
4276
|
-
*
|
|
4277
|
-
*
|
|
4278
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4279
|
-
*/
|
|
4280
|
-
attachOnCellClick(
|
|
4281
|
-
/**
|
|
4282
|
-
* An application-specific payload object that will be passed to the event handler along with the event
|
|
4283
|
-
* object when firing the event
|
|
4284
|
-
*/
|
|
4285
|
-
oData: object,
|
|
4286
|
-
/**
|
|
4287
|
-
* The function to be called when the event occurs
|
|
4288
|
-
*/
|
|
4289
|
-
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
4290
|
-
/**
|
|
4291
|
-
* Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
|
|
4292
|
-
*/
|
|
4293
|
-
oListener?: object
|
|
4294
|
-
): this;
|
|
4295
|
-
/**
|
|
4296
|
-
* Attaches event handler `fnFunction` to the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
4297
|
-
*
|
|
4298
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
4299
|
-
* otherwise it will be bound to this `sap.sac.df.Grid` itself.
|
|
4300
|
-
*
|
|
4301
|
-
* Fires on cell click event
|
|
4302
|
-
*
|
|
4303
|
-
*
|
|
4304
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4305
|
-
*/
|
|
4306
|
-
attachOnCellClick(
|
|
4307
|
-
/**
|
|
4308
|
-
* The function to be called when the event occurs
|
|
4309
|
-
*/
|
|
4310
|
-
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
4311
|
-
/**
|
|
4312
|
-
* Context object to call the event handler with. Defaults to this `sap.sac.df.Grid` itself
|
|
4313
|
-
*/
|
|
4314
|
-
oListener?: object
|
|
4315
|
-
): this;
|
|
4316
|
-
/**
|
|
4317
|
-
* Detaches event handler `fnFunction` from the {@link #event:onCellClick onCellClick} event of this `sap.sac.df.Grid`.
|
|
4318
|
-
*
|
|
4319
|
-
* The passed function and listener object must match the ones used for event registration.
|
|
4320
|
-
*
|
|
4321
|
-
*
|
|
4322
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
4323
|
-
*/
|
|
4324
|
-
detachOnCellClick(
|
|
4325
|
-
/**
|
|
4326
|
-
* The function to be called, when the event occurs
|
|
4327
|
-
*/
|
|
4328
|
-
fnFunction: (p1: Grid$OnCellClickEvent) => void,
|
|
4329
|
-
/**
|
|
4330
|
-
* Context object on which the given function had to be called
|
|
4331
|
-
*/
|
|
4332
|
-
oListener?: object
|
|
4333
|
-
): this;
|
|
4334
|
-
/**
|
|
4335
|
-
* Fires event {@link #event:onCellClick onCellClick} to attached listeners.
|
|
4336
|
-
*
|
|
4337
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3309
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4338
3310
|
*
|
|
4339
3311
|
* @returns Reference to `this` in order to allow method chaining
|
|
4340
3312
|
*/
|
|
@@ -4526,14 +3498,6 @@ declare namespace sap {
|
|
|
4526
3498
|
): this;
|
|
4527
3499
|
}
|
|
4528
3500
|
|
|
4529
|
-
/**
|
|
4530
|
-
* Event object of the FlexAnalysis#onCellClick event.
|
|
4531
|
-
*/
|
|
4532
|
-
type FlexAnalysis$OnCellClickEvent = sap.ui.base.Event<
|
|
4533
|
-
FlexAnalysis$OnCellClickEventParameters,
|
|
4534
|
-
FlexAnalysis
|
|
4535
|
-
>;
|
|
4536
|
-
|
|
4537
3501
|
/**
|
|
4538
3502
|
* Event object of the Grid#onCellClick event.
|
|
4539
3503
|
*/
|
|
@@ -4557,8 +3521,6 @@ declare namespace sap {
|
|
|
4557
3521
|
|
|
4558
3522
|
"sap/sac/df/FilterPanel": undefined;
|
|
4559
3523
|
|
|
4560
|
-
"sap/sac/df/FlexAnalysis": undefined;
|
|
4561
|
-
|
|
4562
3524
|
"sap/sac/df/Grid": undefined;
|
|
4563
3525
|
|
|
4564
3526
|
"sap/sac/df/library": undefined;
|
|
@@ -4589,12 +3551,16 @@ declare namespace sap {
|
|
|
4589
3551
|
|
|
4590
3552
|
"sap/sac/df/types/configuration/StylingPanelItem": undefined;
|
|
4591
3553
|
|
|
3554
|
+
"sap/sac/df/types/configuration/TableTemplate": undefined;
|
|
3555
|
+
|
|
4592
3556
|
"sap/sac/df/types/DataAnalyzerPanelName": undefined;
|
|
4593
3557
|
|
|
4594
3558
|
"sap/sac/df/types/DataSourceType": undefined;
|
|
4595
3559
|
|
|
4596
3560
|
"sap/sac/df/types/DocumentsSupportType": undefined;
|
|
4597
3561
|
|
|
3562
|
+
"sap/sac/df/types/SemanticRole": undefined;
|
|
3563
|
+
|
|
4598
3564
|
"sap/sac/df/types/SortDirection": undefined;
|
|
4599
3565
|
|
|
4600
3566
|
"sap/sac/df/types/SortType": undefined;
|