@openui5/ts-types 1.115.1 → 1.116.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/README.md +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +70 -248
- package/types/sap.m.d.ts +377 -2599
- package/types/sap.tnt.d.ts +51 -24
- package/types/sap.ui.codeeditor.d.ts +3 -19
- package/types/sap.ui.commons.d.ts +39 -415
- package/types/sap.ui.core.d.ts +253 -845
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +4 -78
- package/types/sap.ui.integration.d.ts +119 -93
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +803 -842
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -12
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +21 -187
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +24 -379
- package/types/sap.ui.ux3.d.ts +44 -483
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -308
- package/types/sap.ui.webc.main.d.ts +4118 -1173
- package/types/sap.uxap.d.ts +10 -80
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/BaseDelegate" {
|
|
4
4
|
/**
|
|
@@ -387,7 +387,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
387
387
|
/**
|
|
388
388
|
* Sets the chart type of the inner chart. This function is called by the chart when the `chartType` property
|
|
389
389
|
* is updated. **Note:** This function is called by the chart only. You must not call it directly but use
|
|
390
|
-
* {@link sap.ui.mdc.Chart#
|
|
390
|
+
* {@link sap.ui.mdc.Chart#chartType chartType} instead.
|
|
391
391
|
*/
|
|
392
392
|
setChartType(
|
|
393
393
|
/**
|
|
@@ -480,15 +480,15 @@ declare module "sap/ui/mdc/DefaultTypeMap" {
|
|
|
480
480
|
* **Note:** This `TypeMap` implementation contains the following types:
|
|
481
481
|
*
|
|
482
482
|
*
|
|
483
|
-
* - sap.ui.model.type.Boolean (alias Boolean)
|
|
484
|
-
* - sap.ui.model.type.Currency (alias Currency)
|
|
485
|
-
* - sap.ui.model.type.Date (alias Date)
|
|
486
|
-
* - sap.ui.model.type.DateTime (alias DateTime)
|
|
487
|
-
* - sap.ui.model.type.Float (alias Float)
|
|
488
|
-
* - sap.ui.model.type.Integer (alias Integer)
|
|
489
|
-
* - sap.ui.model.type.String (alias String)
|
|
490
|
-
* - sap.ui.model.type.Time (alias Time)
|
|
491
|
-
* - sap.ui.model.type.Unit (alias Unit)
|
|
483
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
484
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
485
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
486
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
487
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
488
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
489
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
490
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
491
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
492
492
|
*/
|
|
493
493
|
interface DefaultTypeMap {}
|
|
494
494
|
const DefaultTypeMap: DefaultTypeMap;
|
|
@@ -509,11 +509,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
509
509
|
*
|
|
510
510
|
* Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
|
|
511
511
|
*
|
|
512
|
-
* **Note:**
|
|
513
|
-
*
|
|
514
|
-
*
|
|
512
|
+
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
513
|
+
* then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
|
|
514
|
+
* as this can delay the rendering of the output.
|
|
515
515
|
*
|
|
516
|
-
* @returns Returns a condition object
|
|
516
|
+
* @returns Returns a condition object that is set on the control
|
|
517
517
|
*/
|
|
518
518
|
createCondition(
|
|
519
519
|
/**
|
|
@@ -525,11 +525,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
525
525
|
*/
|
|
526
526
|
oControl: sap.ui.core.Control,
|
|
527
527
|
/**
|
|
528
|
-
*
|
|
528
|
+
* Key and description for the condition that is created
|
|
529
529
|
*/
|
|
530
530
|
aValues: any[],
|
|
531
531
|
/**
|
|
532
|
-
*
|
|
532
|
+
* Currently available condition before the property change
|
|
533
533
|
*/
|
|
534
534
|
oCurrentCondition: undefined | sap.ui.mdc.condition.ConditionObject
|
|
535
535
|
): undefined | sap.ui.mdc.condition.ConditionObject;
|
|
@@ -538,11 +538,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
538
538
|
*
|
|
539
539
|
* Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
|
|
540
540
|
*
|
|
541
|
-
* **Note:**
|
|
542
|
-
*
|
|
543
|
-
*
|
|
541
|
+
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
542
|
+
* then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
|
|
543
|
+
* as this can delay the rendering of the output.
|
|
544
544
|
*
|
|
545
|
-
* @returns Returns a condition object
|
|
545
|
+
* @returns Returns a condition object that is set on the control
|
|
546
546
|
*/
|
|
547
547
|
createCondition(
|
|
548
548
|
/**
|
|
@@ -550,11 +550,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
550
550
|
*/
|
|
551
551
|
oField: sap.ui.mdc.field.FieldBase,
|
|
552
552
|
/**
|
|
553
|
-
*
|
|
553
|
+
* Key and description for the condition that is created
|
|
554
554
|
*/
|
|
555
555
|
aValues: any[],
|
|
556
556
|
/**
|
|
557
|
-
*
|
|
557
|
+
* Currently available condition before the property change
|
|
558
558
|
*/
|
|
559
559
|
oCurrentCondition: undefined | sap.ui.mdc.condition.ConditionObject
|
|
560
560
|
): undefined | sap.ui.mdc.condition.ConditionObject;
|
|
@@ -562,7 +562,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
562
562
|
* @since 1.107.0
|
|
563
563
|
*
|
|
564
564
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
565
|
-
* conditions with data relevant for combined key or
|
|
565
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
566
566
|
*
|
|
567
567
|
* @returns Optionally returns a serializeable object to be stored in the condition payload field.
|
|
568
568
|
*/
|
|
@@ -584,7 +584,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
584
584
|
* @since 1.107.0
|
|
585
585
|
*
|
|
586
586
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
587
|
-
* conditions with data relevant for combined key or
|
|
587
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
588
588
|
*
|
|
589
589
|
* @returns Optionally returns a serializeable object to be stored in the condition payload field.
|
|
590
590
|
*/
|
|
@@ -602,7 +602,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
602
602
|
* Determines the description for a given key.
|
|
603
603
|
*
|
|
604
604
|
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
605
|
-
* control
|
|
605
|
+
* control if a description should be displayed but only a key is given.
|
|
606
606
|
*
|
|
607
607
|
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
608
608
|
*
|
|
@@ -610,7 +610,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
610
610
|
*
|
|
611
611
|
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
612
612
|
*
|
|
613
|
-
* @returns Description for key or object containing description, key and payload. If it is not available
|
|
613
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
614
614
|
* right away (must be requested), a `Promise` is returned.
|
|
615
615
|
*/
|
|
616
616
|
getDescription(
|
|
@@ -628,24 +628,148 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
628
628
|
*/
|
|
629
629
|
vKey: any,
|
|
630
630
|
/**
|
|
631
|
-
* In parameters for the key (as a key
|
|
631
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
632
632
|
*/
|
|
633
633
|
oInParameters: object,
|
|
634
634
|
/**
|
|
635
|
-
* Out parameters for the key (as a key
|
|
635
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
636
636
|
*/
|
|
637
637
|
oOutParameters: object,
|
|
638
638
|
/**
|
|
639
|
-
* `BindingContext` of the checked field
|
|
640
|
-
* different row.
|
|
639
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
640
|
+
* a different row.
|
|
641
641
|
*/
|
|
642
642
|
oBindingContext: sap.ui.model.Context,
|
|
643
643
|
/**
|
|
644
|
-
* `ConditionModel`, if bound to one -
|
|
644
|
+
* `ConditionModel`, if bound to one - NO LONGER USED
|
|
645
645
|
*/
|
|
646
646
|
oConditionModel: undefined,
|
|
647
647
|
/**
|
|
648
|
-
* Name of the `ConditionModel`, if bound to one -
|
|
648
|
+
* Name of the `ConditionModel`, if bound to one - NO LONGER USED
|
|
649
|
+
*/
|
|
650
|
+
sConditionModelName: undefined,
|
|
651
|
+
/**
|
|
652
|
+
* Additional context information for this key
|
|
653
|
+
*/
|
|
654
|
+
oConditionPayload: object,
|
|
655
|
+
/**
|
|
656
|
+
* Instance of the calling control if it is not the field itself
|
|
657
|
+
*/
|
|
658
|
+
oControl: sap.ui.core.Control,
|
|
659
|
+
/**
|
|
660
|
+
* Type of the value
|
|
661
|
+
*/
|
|
662
|
+
oType: sap.ui.model.Type
|
|
663
|
+
):
|
|
664
|
+
| string
|
|
665
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
666
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
667
|
+
/**
|
|
668
|
+
* Determines the description for a given key.
|
|
669
|
+
*
|
|
670
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
671
|
+
* control if a description should be displayed but only a key is given.
|
|
672
|
+
*
|
|
673
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
674
|
+
*
|
|
675
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
676
|
+
*
|
|
677
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
678
|
+
*
|
|
679
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
680
|
+
* right away (must be requested), a `Promise` is returned.
|
|
681
|
+
*/
|
|
682
|
+
getDescription(
|
|
683
|
+
/**
|
|
684
|
+
* `Field` control instance
|
|
685
|
+
*/
|
|
686
|
+
oField: sap.ui.mdc.field.FieldBase,
|
|
687
|
+
/**
|
|
688
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
689
|
+
* control
|
|
690
|
+
*/
|
|
691
|
+
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
692
|
+
/**
|
|
693
|
+
* Key
|
|
694
|
+
*/
|
|
695
|
+
vKey: any,
|
|
696
|
+
/**
|
|
697
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
698
|
+
*/
|
|
699
|
+
oInParameters: object,
|
|
700
|
+
/**
|
|
701
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
702
|
+
*/
|
|
703
|
+
oOutParameters: object,
|
|
704
|
+
/**
|
|
705
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
706
|
+
* a different row.
|
|
707
|
+
*/
|
|
708
|
+
oBindingContext: sap.ui.model.Context,
|
|
709
|
+
/**
|
|
710
|
+
* `ConditionModel`, if bound to one - NO LONGER USED
|
|
711
|
+
*/
|
|
712
|
+
oConditionModel: undefined,
|
|
713
|
+
/**
|
|
714
|
+
* Additional context information for this key
|
|
715
|
+
*/
|
|
716
|
+
oConditionPayload: object,
|
|
717
|
+
/**
|
|
718
|
+
* Instance of the calling control if it is not the field itself
|
|
719
|
+
*/
|
|
720
|
+
oControl: sap.ui.core.Control,
|
|
721
|
+
/**
|
|
722
|
+
* Type of the value
|
|
723
|
+
*/
|
|
724
|
+
oType: sap.ui.model.Type
|
|
725
|
+
):
|
|
726
|
+
| string
|
|
727
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
728
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
729
|
+
/**
|
|
730
|
+
* Determines the description for a given key.
|
|
731
|
+
*
|
|
732
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
733
|
+
* control if a description should be displayed but only a key is given.
|
|
734
|
+
*
|
|
735
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
736
|
+
*
|
|
737
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
738
|
+
*
|
|
739
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
740
|
+
*
|
|
741
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
742
|
+
* right away (must be requested), a `Promise` is returned.
|
|
743
|
+
*/
|
|
744
|
+
getDescription(
|
|
745
|
+
/**
|
|
746
|
+
* `Field` control instance
|
|
747
|
+
*/
|
|
748
|
+
oField: sap.ui.mdc.field.FieldBase,
|
|
749
|
+
/**
|
|
750
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
751
|
+
* control
|
|
752
|
+
*/
|
|
753
|
+
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
754
|
+
/**
|
|
755
|
+
* Key
|
|
756
|
+
*/
|
|
757
|
+
vKey: any,
|
|
758
|
+
/**
|
|
759
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
760
|
+
*/
|
|
761
|
+
oInParameters: object,
|
|
762
|
+
/**
|
|
763
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
764
|
+
*/
|
|
765
|
+
oOutParameters: object,
|
|
766
|
+
/**
|
|
767
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
768
|
+
* a different row.
|
|
769
|
+
*/
|
|
770
|
+
oBindingContext: sap.ui.model.Context,
|
|
771
|
+
/**
|
|
772
|
+
* Name of the `ConditionModel`, if bound to one - NO LONGER USED
|
|
649
773
|
*/
|
|
650
774
|
sConditionModelName: undefined,
|
|
651
775
|
/**
|
|
@@ -653,7 +777,65 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
653
777
|
*/
|
|
654
778
|
oConditionPayload: object,
|
|
655
779
|
/**
|
|
656
|
-
* Instance
|
|
780
|
+
* Instance of the calling control if it is not the field itself
|
|
781
|
+
*/
|
|
782
|
+
oControl: sap.ui.core.Control,
|
|
783
|
+
/**
|
|
784
|
+
* Type of the value
|
|
785
|
+
*/
|
|
786
|
+
oType: sap.ui.model.Type
|
|
787
|
+
):
|
|
788
|
+
| string
|
|
789
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
790
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
791
|
+
/**
|
|
792
|
+
* Determines the description for a given key.
|
|
793
|
+
*
|
|
794
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
795
|
+
* control if a description should be displayed but only a key is given.
|
|
796
|
+
*
|
|
797
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
798
|
+
*
|
|
799
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
800
|
+
*
|
|
801
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
802
|
+
*
|
|
803
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
804
|
+
* right away (must be requested), a `Promise` is returned.
|
|
805
|
+
*/
|
|
806
|
+
getDescription(
|
|
807
|
+
/**
|
|
808
|
+
* `Field` control instance
|
|
809
|
+
*/
|
|
810
|
+
oField: sap.ui.mdc.field.FieldBase,
|
|
811
|
+
/**
|
|
812
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
813
|
+
* control
|
|
814
|
+
*/
|
|
815
|
+
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
816
|
+
/**
|
|
817
|
+
* Key
|
|
818
|
+
*/
|
|
819
|
+
vKey: any,
|
|
820
|
+
/**
|
|
821
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
822
|
+
*/
|
|
823
|
+
oInParameters: object,
|
|
824
|
+
/**
|
|
825
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
826
|
+
*/
|
|
827
|
+
oOutParameters: object,
|
|
828
|
+
/**
|
|
829
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
830
|
+
* a different row.
|
|
831
|
+
*/
|
|
832
|
+
oBindingContext: sap.ui.model.Context,
|
|
833
|
+
/**
|
|
834
|
+
* Additional context information for this key
|
|
835
|
+
*/
|
|
836
|
+
oConditionPayload: object,
|
|
837
|
+
/**
|
|
838
|
+
* Instance of the calling control if it is not the field itself
|
|
657
839
|
*/
|
|
658
840
|
oControl: sap.ui.core.Control,
|
|
659
841
|
/**
|
|
@@ -799,34 +981,34 @@ declare module "sap/ui/mdc/odata/TypeMap" {
|
|
|
799
981
|
* **Note:** This `TypeMap` implementation contains the following types:
|
|
800
982
|
*
|
|
801
983
|
*
|
|
802
|
-
* - sap.ui.model.type.Boolean (alias Boolean)
|
|
803
|
-
* - sap.ui.model.type.Currency (alias Currency)
|
|
804
|
-
* - sap.ui.model.type.Date (alias Date)
|
|
805
|
-
* - sap.ui.model.type.DateTime (alias DateTime)
|
|
806
|
-
* - sap.ui.model.type.Float (alias Float)
|
|
807
|
-
* - sap.ui.model.type.Integer (alias Integer)
|
|
808
|
-
* - sap.ui.model.type.String (alias String)
|
|
809
|
-
* - sap.ui.model.type.Time (alias Time)
|
|
810
|
-
* - sap.ui.model.type.Unit (alias Unit)
|
|
811
|
-
* - sap.ui.model.odata.type.Stream (alias Edm.Binary)
|
|
812
|
-
* - sap.ui.model.odata.type.Boolean (alias Edm.Boolean)
|
|
813
|
-
* - sap.ui.model.odata.type.Byte (alias Edm.Byte)
|
|
814
|
-
* - sap.ui.model.odata.type.Date (alias Edm.Date)
|
|
815
|
-
* - sap.ui.model.odata.type.DateTime (alias Edm.DateTime)
|
|
816
|
-
* - sap.ui.model.odata.type.DateTimeOffset (alias Edm.DateTimeOffset)
|
|
817
|
-
* - sap.ui.model.odata.type.Decimal (alias Edm.Decimal)
|
|
818
|
-
* - sap.ui.model.odata.type.Double (alias Edm.Double)
|
|
819
|
-
* - sap.ui.model.odata.type.Single (alias Edm.Float)
|
|
820
|
-
* - sap.ui.model.odata.type.Guid (alias Edm.Guid)
|
|
821
|
-
* - sap.ui.model.odata.type.Int16 (alias Edm.Int16)
|
|
822
|
-
* - sap.ui.model.odata.type.Int32 (alias Edm.Int32)
|
|
823
|
-
* - sap.ui.model.odata.type.Int64 (alias Edm.Int64)
|
|
824
|
-
* - sap.ui.model.odata.type.SByte (alias Edm.SByte)
|
|
825
|
-
* - sap.ui.model.odata.type.Single (alias Edm.Single)
|
|
826
|
-
* - sap.ui.model.odata.type.Stream (alias Edm.Stream)
|
|
827
|
-
* - sap.ui.model.odata.type.String (alias Edm.String)
|
|
828
|
-
* - sap.ui.model.odata.type.Time (alias Edm.Time)
|
|
829
|
-
* - sap.ui.model.odata.type.TimeOfDay (alias Edm.TimeOfDay)
|
|
984
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
985
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
986
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
987
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
988
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
989
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
990
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
991
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
992
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
993
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
|
|
994
|
+
* - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
|
|
995
|
+
* - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
|
|
996
|
+
* - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
|
|
997
|
+
* - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
|
|
998
|
+
* - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
|
|
999
|
+
* - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
|
|
1000
|
+
* - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
|
|
1001
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
|
|
1002
|
+
* - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
|
|
1003
|
+
* - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
|
|
1004
|
+
* - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
|
|
1005
|
+
* - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
|
|
1006
|
+
* - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
|
|
1007
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
|
|
1008
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
|
|
1009
|
+
* - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
|
|
1010
|
+
* - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
|
|
1011
|
+
* - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
|
|
830
1012
|
*/
|
|
831
1013
|
interface TypeMap {}
|
|
832
1014
|
const TypeMap: TypeMap;
|
|
@@ -892,34 +1074,34 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
|
|
|
892
1074
|
* **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
|
|
893
1075
|
*
|
|
894
1076
|
*
|
|
895
|
-
* - sap.ui.model.type.Boolean (alias Boolean)
|
|
896
|
-
* - sap.ui.model.type.Currency (alias Currency)
|
|
897
|
-
* - sap.ui.model.type.Date (alias Date)
|
|
898
|
-
* - sap.ui.model.type.DateTime (alias DateTime)
|
|
899
|
-
* - sap.ui.model.type.Float (alias Float)
|
|
900
|
-
* - sap.ui.model.type.Integer (alias Integer)
|
|
901
|
-
* - sap.ui.model.type.String (alias String)
|
|
902
|
-
* - sap.ui.model.type.Time (alias Time)
|
|
903
|
-
* - sap.ui.model.type.Unit (alias Unit)
|
|
904
|
-
* - sap.ui.model.odata.type.Stream (alias Edm.Binary)
|
|
905
|
-
* - sap.ui.model.odata.type.Boolean (alias Edm.Boolean)
|
|
906
|
-
* - sap.ui.model.odata.type.Byte (alias Edm.Byte)
|
|
907
|
-
* - sap.ui.model.odata.type.Date (alias Edm.Date)
|
|
908
|
-
* - sap.ui.model.odata.type.DateTime (alias Edm.DateTime)
|
|
909
|
-
* - sap.ui.model.odata.type.DateTimeOffset (alias Edm.DateTimeOffset)
|
|
910
|
-
* - sap.ui.model.odata.type.Decimal (alias Edm.Decimal)
|
|
911
|
-
* - sap.ui.model.odata.type.Double (alias Edm.Double)
|
|
912
|
-
* - sap.ui.model.odata.type.Single (alias Edm.Float)
|
|
913
|
-
* - sap.ui.model.odata.type.Guid (alias Edm.Guid)
|
|
914
|
-
* - sap.ui.model.odata.type.Int16 (alias Edm.Int16)
|
|
915
|
-
* - sap.ui.model.odata.type.Int32 (alias Edm.Int32)
|
|
916
|
-
* - sap.ui.model.odata.type.Int64 (alias Edm.Int64)
|
|
917
|
-
* - sap.ui.model.odata.type.SByte (alias Edm.SByte)
|
|
918
|
-
* - sap.ui.model.odata.type.Single (alias Edm.Single)
|
|
919
|
-
* - sap.ui.model.odata.type.Stream (alias Edm.Stream)
|
|
920
|
-
* - sap.ui.model.odata.type.String (alias Edm.String)
|
|
921
|
-
* - sap.ui.model.odata.type.Time (alias Edm.Time)
|
|
922
|
-
* - sap.ui.model.odata.type.TimeOfDay (alias Edm.TimeOfDay)
|
|
1077
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
1078
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
1079
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
1080
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
1081
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
1082
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
1083
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
1084
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
1085
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
1086
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
|
|
1087
|
+
* - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
|
|
1088
|
+
* - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
|
|
1089
|
+
* - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
|
|
1090
|
+
* - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
|
|
1091
|
+
* - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
|
|
1092
|
+
* - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
|
|
1093
|
+
* - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
|
|
1094
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
|
|
1095
|
+
* - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
|
|
1096
|
+
* - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
|
|
1097
|
+
* - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
|
|
1098
|
+
* - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
|
|
1099
|
+
* - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
|
|
1100
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
|
|
1101
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
|
|
1102
|
+
* - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
|
|
1103
|
+
* - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
|
|
1104
|
+
* - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
|
|
923
1105
|
*/
|
|
924
1106
|
interface TypeMap {}
|
|
925
1107
|
const TypeMap: TypeMap;
|
|
@@ -1029,11 +1211,7 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
1029
1211
|
/**
|
|
1030
1212
|
* Instance of the MDC table
|
|
1031
1213
|
*/
|
|
1032
|
-
oTable: sap.ui.mdc.Table
|
|
1033
|
-
/**
|
|
1034
|
-
* Property to group
|
|
1035
|
-
*/
|
|
1036
|
-
sPropertyName: string
|
|
1214
|
+
oTable: sap.ui.mdc.Table
|
|
1037
1215
|
): sap.ui.model.Sorter | undefined;
|
|
1038
1216
|
/**
|
|
1039
1217
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
@@ -1154,7 +1332,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1154
1332
|
*/
|
|
1155
1333
|
getBaseType(
|
|
1156
1334
|
/**
|
|
1157
|
-
* Given type string or sap.ui.model.SimpleType
|
|
1335
|
+
* Given type string or {@link sap.ui.model.SimpleType}
|
|
1158
1336
|
*/
|
|
1159
1337
|
sType: string,
|
|
1160
1338
|
/**
|
|
@@ -1172,7 +1350,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1172
1350
|
*/
|
|
1173
1351
|
getBaseTypeForType(
|
|
1174
1352
|
/**
|
|
1175
|
-
* Given type string or sap.ui.model.SimpleType
|
|
1353
|
+
* Given type string or {@link sap.ui.model.SimpleType}
|
|
1176
1354
|
*/
|
|
1177
1355
|
oType: sap.ui.model.SimpleType
|
|
1178
1356
|
): string;
|
|
@@ -1268,14 +1446,14 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1268
1446
|
oConstraints?: object
|
|
1269
1447
|
): object;
|
|
1270
1448
|
/**
|
|
1271
|
-
* Sets a BaseType and an optional model- or scenario-specific configuration method for a given sap.ui.model.SimpleType
|
|
1449
|
+
* Sets a BaseType and an optional model- or scenario-specific configuration method for a given {@link sap.ui.model.SimpleType }
|
|
1272
1450
|
* ObjectPath string
|
|
1273
1451
|
*
|
|
1274
1452
|
* As default `string` is returned.
|
|
1275
1453
|
*/
|
|
1276
1454
|
set(
|
|
1277
1455
|
/**
|
|
1278
|
-
* Objectpath string for sap.ui.model.SimpleType
|
|
1456
|
+
* Objectpath string for {@link sap.ui.model.SimpleType}
|
|
1279
1457
|
*/
|
|
1280
1458
|
sType: string,
|
|
1281
1459
|
/**
|
|
@@ -1285,16 +1463,17 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1285
1463
|
| (sap.ui.mdc.enums.BaseType | keyof typeof sap.ui.mdc.enums.BaseType)
|
|
1286
1464
|
| Function,
|
|
1287
1465
|
/**
|
|
1288
|
-
* Optional customizing method for formatoptions and constraints. See
|
|
1466
|
+
* Optional customizing method for formatoptions and constraints. See {@link sap.ui.mdc.DefaultTypeMap }
|
|
1467
|
+
* for examples.
|
|
1289
1468
|
*/
|
|
1290
1469
|
fnOptions?: Function
|
|
1291
1470
|
): void;
|
|
1292
1471
|
/**
|
|
1293
|
-
* Allows alternative identifiers for Types, such as "Boolean" for "sap.ui.model.type.Boolean"
|
|
1472
|
+
* Allows alternative identifiers for Types, such as "Boolean" for "{@link sap.ui.model.type.Boolean}"
|
|
1294
1473
|
*/
|
|
1295
1474
|
setAlias(
|
|
1296
1475
|
/**
|
|
1297
|
-
* Objectpath string for sap.ui.model.SimpleType
|
|
1476
|
+
* Objectpath string for {@link sap.ui.model.SimpleType}
|
|
1298
1477
|
*/
|
|
1299
1478
|
sType: string,
|
|
1300
1479
|
/**
|
|
@@ -1340,9 +1519,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1340
1519
|
* @since 1.101.0
|
|
1341
1520
|
*
|
|
1342
1521
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
1343
|
-
* conditions with data relevant for combined key or
|
|
1522
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
1344
1523
|
*
|
|
1345
|
-
* @returns Optionally returns a
|
|
1524
|
+
* @returns Optionally returns a serializable object to be stored in the condition payload field
|
|
1346
1525
|
*/
|
|
1347
1526
|
createConditionPayload(
|
|
1348
1527
|
/**
|
|
@@ -1354,18 +1533,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1354
1533
|
*/
|
|
1355
1534
|
oContent: sap.ui.mdc.valuehelp.base.FilterableListContent,
|
|
1356
1535
|
/**
|
|
1357
|
-
*
|
|
1536
|
+
* Key and description pair for the condition that is created
|
|
1358
1537
|
*/
|
|
1359
1538
|
aValues: any[],
|
|
1360
1539
|
/**
|
|
1361
|
-
*
|
|
1540
|
+
* Optional additional context
|
|
1362
1541
|
*/
|
|
1363
1542
|
oContext?: sap.ui.model.Context
|
|
1364
1543
|
): undefined | object;
|
|
1365
1544
|
/**
|
|
1366
1545
|
* Executes a filter in a `ListBinding`.
|
|
1367
1546
|
*
|
|
1368
|
-
* @returns Promise that is resolved if search is executed
|
|
1547
|
+
* @returns `Promise` that is resolved if search is executed
|
|
1369
1548
|
*/
|
|
1370
1549
|
executeFilter(
|
|
1371
1550
|
/**
|
|
@@ -1384,10 +1563,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1384
1563
|
/**
|
|
1385
1564
|
* @since 1.106.0
|
|
1386
1565
|
*
|
|
1387
|
-
*
|
|
1388
|
-
* applied
|
|
1389
|
-
*
|
|
1390
|
-
*
|
|
1566
|
+
* Provides a map of conditions for the following situations:
|
|
1567
|
+
* - Initial set of conditions applied every time value help content is shown for the first time since
|
|
1568
|
+
* opening its container.
|
|
1569
|
+
* - Detailed set of conditions in `getItemForValue` scenarios that allow you to find a specific value
|
|
1570
|
+
* help item (indicated by oConfig availability).
|
|
1391
1571
|
*
|
|
1392
1572
|
* @returns Returns a map of conditions
|
|
1393
1573
|
*/
|
|
@@ -1413,18 +1593,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1413
1593
|
*/
|
|
1414
1594
|
parsedValue?: any;
|
|
1415
1595
|
/**
|
|
1416
|
-
* Contextual information provided by condition payload or inParameters
|
|
1417
|
-
* if the description needs to be determined for an existing condition.
|
|
1596
|
+
* Contextual information provided by condition payload or `inParameters`/`outParameters`. This is only
|
|
1597
|
+
* filled if the description needs to be determined for an existing condition.
|
|
1418
1598
|
*/
|
|
1419
1599
|
context?: {
|
|
1420
1600
|
/**
|
|
1421
|
-
* In parameters of the current condition (
|
|
1422
|
-
* older
|
|
1601
|
+
* In parameters of the current condition (`inParameter` are not used any longer, but it might be filled
|
|
1602
|
+
* in older conditions stored in variants.)
|
|
1423
1603
|
*/
|
|
1424
1604
|
inParameter?: object;
|
|
1425
1605
|
/**
|
|
1426
|
-
* Out parameters of the current condition (
|
|
1427
|
-
* in older
|
|
1606
|
+
* Out parameters of the current condition (`outParameter` are not used any longer, but it might be filled
|
|
1607
|
+
* in older conditions stored in variants.)
|
|
1428
1608
|
*/
|
|
1429
1609
|
ouParameter?: object;
|
|
1430
1610
|
/**
|
|
@@ -1437,8 +1617,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1437
1617
|
*/
|
|
1438
1618
|
control: sap.ui.core.Control;
|
|
1439
1619
|
/**
|
|
1440
|
-
* `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to
|
|
1441
|
-
* different row.
|
|
1620
|
+
* `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
|
|
1621
|
+
* a different row.
|
|
1442
1622
|
*/
|
|
1443
1623
|
bindingContext?: sap.ui.model.Context;
|
|
1444
1624
|
/**
|
|
@@ -1448,7 +1628,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1448
1628
|
checkKey: boolean;
|
|
1449
1629
|
/**
|
|
1450
1630
|
* If set, the value help checks only if there is an item with the given description. This is set to `false`
|
|
1451
|
-
* if only the key is used in the field.
|
|
1631
|
+
* if only the key is used in the field.
|
|
1452
1632
|
*/
|
|
1453
1633
|
checkDescription: boolean;
|
|
1454
1634
|
}
|
|
@@ -1456,7 +1636,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1456
1636
|
/**
|
|
1457
1637
|
* @since 1.101.0
|
|
1458
1638
|
*
|
|
1459
|
-
* Provides type information for
|
|
1639
|
+
* Provides type information for list content filtering.
|
|
1460
1640
|
*
|
|
1461
1641
|
* @returns Returns a type map for property paths
|
|
1462
1642
|
*/
|
|
@@ -1470,7 +1650,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1470
1650
|
*/
|
|
1471
1651
|
oContent: sap.ui.mdc.valuehelp.base.FilterableListContent,
|
|
1472
1652
|
/**
|
|
1473
|
-
*
|
|
1653
|
+
* Set of conditions to create filters for
|
|
1474
1654
|
*/
|
|
1475
1655
|
oConditions: object
|
|
1476
1656
|
): object;
|
|
@@ -1478,9 +1658,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1478
1658
|
* @since 1.101.0
|
|
1479
1659
|
*
|
|
1480
1660
|
* Provides the possibility to customize selections in 'Select from list' scenarios. By default, only condition
|
|
1481
|
-
* keys are
|
|
1661
|
+
* keys are taken into consideration. This might be extended with payload dependent filters.
|
|
1482
1662
|
*
|
|
1483
|
-
* @returns
|
|
1663
|
+
* @returns `true` if item is selected
|
|
1484
1664
|
*/
|
|
1485
1665
|
isFilterableListItemSelected(
|
|
1486
1666
|
/**
|
|
@@ -1501,9 +1681,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1501
1681
|
aConditions: sap.ui.mdc.condition.ConditionObject[]
|
|
1502
1682
|
): boolean;
|
|
1503
1683
|
/**
|
|
1504
|
-
* Checks if a `ListBinding` supports
|
|
1684
|
+
* Checks if a `ListBinding` supports `$search`.
|
|
1505
1685
|
*
|
|
1506
|
-
* @returns true if
|
|
1686
|
+
* @returns `true` if `$search` is supported
|
|
1507
1687
|
*/
|
|
1508
1688
|
isSearchSupported(
|
|
1509
1689
|
/**
|
|
@@ -1515,7 +1695,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1515
1695
|
*/
|
|
1516
1696
|
oContent: sap.ui.mdc.valuehelp.base.Content,
|
|
1517
1697
|
/**
|
|
1518
|
-
* ListBinding
|
|
1698
|
+
* `ListBinding`
|
|
1519
1699
|
*/
|
|
1520
1700
|
oListBinding: sap.ui.model.ListBinding
|
|
1521
1701
|
): boolean;
|
|
@@ -1553,8 +1733,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1553
1733
|
/**
|
|
1554
1734
|
* @since 1.101.0
|
|
1555
1735
|
*
|
|
1556
|
-
* Callback invoked
|
|
1557
|
-
* of the corresponding field changes This callback
|
|
1736
|
+
* Callback invoked every time a {@link sap.ui.mdc.ValueHelp ValueHelp} fires a `select` event or the value
|
|
1737
|
+
* of the corresponding field changes. This callback can be used to update external fields.
|
|
1558
1738
|
*/
|
|
1559
1739
|
onConditionPropagation(
|
|
1560
1740
|
/**
|
|
@@ -1568,7 +1748,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1568
1748
|
| sap.ui.mdc.enums.ValueHelpPropagationReason
|
|
1569
1749
|
| keyof typeof sap.ui.mdc.enums.ValueHelpPropagationReason,
|
|
1570
1750
|
/**
|
|
1571
|
-
*
|
|
1751
|
+
* Current configuration provided by the calling control
|
|
1572
1752
|
*/
|
|
1573
1753
|
oConfig: object
|
|
1574
1754
|
): void;
|
|
@@ -1577,11 +1757,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1577
1757
|
*
|
|
1578
1758
|
* This function is called when the value help is opened or a key or description is requested.
|
|
1579
1759
|
*
|
|
1580
|
-
* So
|
|
1760
|
+
* So depending on the value help content used, all content controls and data need to be assigned. Once
|
|
1581
1761
|
* they are assigned and the data is set, the returned `Promise` needs to be resolved. Only then does the
|
|
1582
1762
|
* value help continue opening or reading data.
|
|
1583
1763
|
*
|
|
1584
|
-
* @returns Promise that is resolved if all content is available
|
|
1764
|
+
* @returns `Promise` that is resolved if all content is available
|
|
1585
1765
|
*/
|
|
1586
1766
|
retrieveContent(
|
|
1587
1767
|
/**
|
|
@@ -1593,16 +1773,16 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1593
1773
|
*/
|
|
1594
1774
|
oContainer: sap.ui.mdc.valuehelp.base.Container,
|
|
1595
1775
|
/**
|
|
1596
|
-
*
|
|
1776
|
+
* ID of the content shown after this call to retrieve content
|
|
1597
1777
|
*/
|
|
1598
1778
|
sContentId: string
|
|
1599
1779
|
): Promise<any>;
|
|
1600
1780
|
/**
|
|
1601
1781
|
* @since 1.110.0
|
|
1602
1782
|
*
|
|
1603
|
-
* Controls if a
|
|
1783
|
+
* Controls if a type-ahead is opened or closed.
|
|
1604
1784
|
*
|
|
1605
|
-
* @returns Boolean or Promise resolving
|
|
1785
|
+
* @returns Boolean or `Promise` resolving into a boolean indicating the desired behavior
|
|
1606
1786
|
*/
|
|
1607
1787
|
showTypeahead(
|
|
1608
1788
|
/**
|
|
@@ -1610,7 +1790,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1610
1790
|
*/
|
|
1611
1791
|
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
1612
1792
|
/**
|
|
1613
|
-
* ValueHelp
|
|
1793
|
+
* `ValueHelp` Content requesting conditions configuration
|
|
1614
1794
|
*/
|
|
1615
1795
|
oContent: sap.ui.mdc.valuehelp.base.Content
|
|
1616
1796
|
): Promise<any> | boolean;
|
|
@@ -1629,18 +1809,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1629
1809
|
*/
|
|
1630
1810
|
oListBinding: sap.ui.model.ListBinding,
|
|
1631
1811
|
/**
|
|
1632
|
-
* The binding info object
|
|
1812
|
+
* The binding info object that is be used to bind the list to the model
|
|
1633
1813
|
*/
|
|
1634
1814
|
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo,
|
|
1635
1815
|
/**
|
|
1636
|
-
* ValueHelp content requesting the binding update
|
|
1816
|
+
* `ValueHelp` content requesting the binding update
|
|
1637
1817
|
*/
|
|
1638
1818
|
oContent: sap.ui.mdc.valuehelp.base.FilterableListContent
|
|
1639
1819
|
): void;
|
|
1640
1820
|
/**
|
|
1641
1821
|
* @since 1.110.0
|
|
1642
1822
|
*
|
|
1643
|
-
* Adjustable filtering for list-based contents
|
|
1823
|
+
* Adjustable filtering for list-based contents.
|
|
1644
1824
|
*/
|
|
1645
1825
|
updateBindingInfo(
|
|
1646
1826
|
/**
|
|
@@ -1648,11 +1828,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1648
1828
|
*/
|
|
1649
1829
|
oValueHelp: sap.ui.mdc.ValueHelp,
|
|
1650
1830
|
/**
|
|
1651
|
-
* ValueHelp content requesting conditions configuration
|
|
1831
|
+
* `ValueHelp` content requesting conditions configuration
|
|
1652
1832
|
*/
|
|
1653
1833
|
oContent: sap.ui.mdc.valuehelp.base.FilterableListContent,
|
|
1654
1834
|
/**
|
|
1655
|
-
* The binding info object to
|
|
1835
|
+
* The binding info object to that is used to bind the list to the model
|
|
1656
1836
|
*/
|
|
1657
1837
|
oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
1658
1838
|
): void;
|
|
@@ -1690,7 +1870,7 @@ declare namespace sap {
|
|
|
1690
1870
|
/**
|
|
1691
1871
|
* Control that is shown when there is no data available inside the chart.
|
|
1692
1872
|
* This can be used if the standard behavior of the used chart control needs to be overriden.
|
|
1693
|
-
* To show this `noDataContent`, set {@link
|
|
1873
|
+
* To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
|
|
1694
1874
|
*/
|
|
1695
1875
|
noDataContent?: sap.ui.core.Control;
|
|
1696
1876
|
|
|
@@ -1869,7 +2049,7 @@ declare namespace sap {
|
|
|
1869
2049
|
*
|
|
1870
2050
|
* Control that is shown when there is no data available inside the chart.
|
|
1871
2051
|
* This can be used if the standard behavior of the used chart control needs to be overriden.
|
|
1872
|
-
* To show this `noDataContent`, set {@link
|
|
2052
|
+
* To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
|
|
1873
2053
|
*/
|
|
1874
2054
|
getNoDataContent(): sap.ui.core.Control;
|
|
1875
2055
|
/**
|
|
@@ -2452,7 +2632,7 @@ declare namespace sap {
|
|
|
2452
2632
|
}
|
|
2453
2633
|
|
|
2454
2634
|
/**
|
|
2455
|
-
*
|
|
2635
|
+
* Chart `ChartTypeLayoutConfig` type.
|
|
2456
2636
|
*/
|
|
2457
2637
|
type ChartTypeLayoutConfig = {
|
|
2458
2638
|
/**
|
|
@@ -2513,7 +2693,7 @@ declare namespace sap {
|
|
|
2513
2693
|
*/
|
|
2514
2694
|
tooltip?: string;
|
|
2515
2695
|
/**
|
|
2516
|
-
* The name of the type of the property
|
|
2696
|
+
* The name of the data type of the property
|
|
2517
2697
|
*/
|
|
2518
2698
|
datatype: string;
|
|
2519
2699
|
/**
|
|
@@ -3510,9 +3690,7 @@ declare namespace sap {
|
|
|
3510
3690
|
*
|
|
3511
3691
|
* **Note** This event is only triggered if the used content control has a `liveChange` event.
|
|
3512
3692
|
*/
|
|
3513
|
-
liveChange?: (
|
|
3514
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.field.FieldBase$LiveChangeEventParameters>
|
|
3515
|
-
) => void;
|
|
3693
|
+
liveChange?: (oEvent: FieldBase$LiveChangeEvent) => void;
|
|
3516
3694
|
|
|
3517
3695
|
/**
|
|
3518
3696
|
* This event is fired if the inner control has a press event and this is fired.
|
|
@@ -3527,9 +3705,7 @@ declare namespace sap {
|
|
|
3527
3705
|
*
|
|
3528
3706
|
* **Note** This event is only triggered if the field is editable.
|
|
3529
3707
|
*/
|
|
3530
|
-
submit?: (
|
|
3531
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.field.FieldBase$SubmitEventParameters>
|
|
3532
|
-
) => void;
|
|
3708
|
+
submit?: (oEvent: FieldBase$SubmitEvent) => void;
|
|
3533
3709
|
}
|
|
3534
3710
|
|
|
3535
3711
|
interface $FieldInfoBaseSettings extends sap.ui.mdc.$ElementSettings {
|
|
@@ -5023,7 +5199,12 @@ declare namespace sap {
|
|
|
5023
5199
|
*
|
|
5024
5200
|
* Might be called if Binding changes or field is initialized.
|
|
5025
5201
|
*/
|
|
5026
|
-
resetInvalidInput(
|
|
5202
|
+
resetInvalidInput(
|
|
5203
|
+
/**
|
|
5204
|
+
* If set to `true` the `ValueState` and `ValueStateText` is removed
|
|
5205
|
+
*/
|
|
5206
|
+
bRemoveUIMessage: boolean
|
|
5207
|
+
): void;
|
|
5027
5208
|
/**
|
|
5028
5209
|
* Sets a new value for property {@link #getConditions conditions}.
|
|
5029
5210
|
*
|
|
@@ -5911,44 +6092,14 @@ declare namespace sap {
|
|
|
5911
6092
|
): this;
|
|
5912
6093
|
}
|
|
5913
6094
|
|
|
5914
|
-
/**
|
|
5915
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$LiveChangeEventParameters'
|
|
5916
|
-
* in 1.115.1 and any later releases.
|
|
5917
|
-
*/
|
|
5918
|
-
type $FieldBaseLiveChangeEventParameters = sap.ui.mdc.field.FieldBase$LiveChangeEventParameters;
|
|
5919
|
-
|
|
5920
6095
|
type FieldBase$LiveChangeEvent = sap.ui.base.Event<FieldBase$LiveChangeEventParameters>;
|
|
5921
6096
|
|
|
5922
|
-
/**
|
|
5923
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$PressEventParameters'
|
|
5924
|
-
* in 1.115.1 and any later releases.
|
|
5925
|
-
*/
|
|
5926
|
-
type $FieldBasePressEventParameters = sap.ui.mdc.field.FieldBase$PressEventParameters;
|
|
5927
|
-
|
|
5928
6097
|
type FieldBase$PressEvent = sap.ui.base.Event<FieldBase$PressEventParameters>;
|
|
5929
6098
|
|
|
5930
|
-
/**
|
|
5931
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$SubmitEventParameters'
|
|
5932
|
-
* in 1.115.1 and any later releases.
|
|
5933
|
-
*/
|
|
5934
|
-
type $FieldBaseSubmitEventParameters = sap.ui.mdc.field.FieldBase$SubmitEventParameters;
|
|
5935
|
-
|
|
5936
6099
|
type FieldBase$SubmitEvent = sap.ui.base.Event<FieldBase$SubmitEventParameters>;
|
|
5937
6100
|
|
|
5938
|
-
/**
|
|
5939
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldInfoBase$DataUpdateEventParameters'
|
|
5940
|
-
* in 1.115.1 and any later releases.
|
|
5941
|
-
*/
|
|
5942
|
-
type $FieldInfoBaseDataUpdateEventParameters = sap.ui.mdc.field.FieldInfoBase$DataUpdateEventParameters;
|
|
5943
|
-
|
|
5944
6101
|
type FieldInfoBase$DataUpdateEvent = sap.ui.base.Event<FieldInfoBase$DataUpdateEventParameters>;
|
|
5945
6102
|
|
|
5946
|
-
/**
|
|
5947
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldInfoBase$PopoverAfterOpenEventParameters'
|
|
5948
|
-
* in 1.115.1 and any later releases.
|
|
5949
|
-
*/
|
|
5950
|
-
type $FieldInfoBasePopoverAfterOpenEventParameters = sap.ui.mdc.field.FieldInfoBase$PopoverAfterOpenEventParameters;
|
|
5951
|
-
|
|
5952
6103
|
type FieldInfoBase$PopoverAfterOpenEvent = sap.ui.base.Event<FieldInfoBase$PopoverAfterOpenEventParameters>;
|
|
5953
6104
|
}
|
|
5954
6105
|
/**
|
|
@@ -5958,9 +6109,7 @@ declare namespace sap {
|
|
|
5958
6109
|
/**
|
|
5959
6110
|
* @since 1.84.0
|
|
5960
6111
|
*
|
|
5961
|
-
*
|
|
5962
|
-
*
|
|
5963
|
-
* These modules are not to be used stand-alone.
|
|
6112
|
+
* Modules for value help dialog {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar}
|
|
5964
6113
|
*/
|
|
5965
6114
|
namespace vh {
|
|
5966
6115
|
interface $FilterBarSettings
|
|
@@ -6005,10 +6154,12 @@ declare namespace sap {
|
|
|
6005
6154
|
* The `FilterBar` control creates and handles the filters based on the provided metadata information.
|
|
6006
6155
|
* The metadata information is provided via the {@link sap.ui.mdc.FilterBarDelegate FilterBarDelegate} implementation.
|
|
6007
6156
|
* This implementation has to be provided by the application.
|
|
6157
|
+
* **Note:** The `FilterBar` can only be used for a {@link sap.ui.mdc.valuehelp.Dialog Dialog} and not
|
|
6158
|
+
* on its own.
|
|
6008
6159
|
*/
|
|
6009
6160
|
class FilterBar extends sap.ui.mdc.filterbar.FilterBarBase {
|
|
6010
6161
|
/**
|
|
6011
|
-
* Constructor for a new FilterBar.
|
|
6162
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
6012
6163
|
*
|
|
6013
6164
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6014
6165
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -6021,7 +6172,7 @@ declare namespace sap {
|
|
|
6021
6172
|
mSettings?: sap.ui.mdc.filterbar.vh.$FilterBarSettings
|
|
6022
6173
|
);
|
|
6023
6174
|
/**
|
|
6024
|
-
* Constructor for a new FilterBar.
|
|
6175
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
6025
6176
|
*
|
|
6026
6177
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6027
6178
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -6070,7 +6221,7 @@ declare namespace sap {
|
|
|
6070
6221
|
/**
|
|
6071
6222
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6072
6223
|
*
|
|
6073
|
-
*
|
|
6224
|
+
* Destroys the `CollectiveSearch` control.
|
|
6074
6225
|
*
|
|
6075
6226
|
* **Note:** This must only be used by the corresponding value help, not from outside.
|
|
6076
6227
|
*
|
|
@@ -6198,66 +6349,6 @@ declare namespace sap {
|
|
|
6198
6349
|
iFilterFieldThreshold?: int
|
|
6199
6350
|
): this;
|
|
6200
6351
|
}
|
|
6201
|
-
/**
|
|
6202
|
-
* @since 1.84.0
|
|
6203
|
-
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6204
|
-
*
|
|
6205
|
-
* The FilterContainer is a IFilterContainer implementation for `AlignedFlowLayout`
|
|
6206
|
-
*/
|
|
6207
|
-
class FilterContainer extends sap.ui.mdc.filterbar.IFilterContainer {
|
|
6208
|
-
/**
|
|
6209
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6210
|
-
*
|
|
6211
|
-
* Constructor for a new filterBar/vh/FilterContainer.
|
|
6212
|
-
*
|
|
6213
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6214
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
6215
|
-
* of the syntax of the settings object.
|
|
6216
|
-
*/
|
|
6217
|
-
constructor(
|
|
6218
|
-
/**
|
|
6219
|
-
* ID for the new control, generated automatically if no ID is given
|
|
6220
|
-
*/
|
|
6221
|
-
sId?: string
|
|
6222
|
-
);
|
|
6223
|
-
|
|
6224
|
-
/**
|
|
6225
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6226
|
-
*
|
|
6227
|
-
* Creates a new subclass of class sap.ui.mdc.filterbar.vh.FilterContainer with name `sClassName` and enriches
|
|
6228
|
-
* it with the information contained in `oClassInfo`.
|
|
6229
|
-
*
|
|
6230
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.filterbar.IFilterContainer.extend}.
|
|
6231
|
-
*
|
|
6232
|
-
* @returns Created class / constructor function
|
|
6233
|
-
*/
|
|
6234
|
-
static extend<T extends Record<string, unknown>>(
|
|
6235
|
-
/**
|
|
6236
|
-
* Name of the class being created
|
|
6237
|
-
*/
|
|
6238
|
-
sClassName: string,
|
|
6239
|
-
/**
|
|
6240
|
-
* Object literal with information about the class
|
|
6241
|
-
*/
|
|
6242
|
-
oClassInfo?: sap.ClassInfo<
|
|
6243
|
-
T,
|
|
6244
|
-
sap.ui.mdc.filterbar.vh.FilterContainer
|
|
6245
|
-
>,
|
|
6246
|
-
/**
|
|
6247
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6248
|
-
* used by this class
|
|
6249
|
-
*/
|
|
6250
|
-
FNMetaImpl?: Function
|
|
6251
|
-
): Function;
|
|
6252
|
-
/**
|
|
6253
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6254
|
-
*
|
|
6255
|
-
* Returns a metadata object for class sap.ui.mdc.filterbar.vh.FilterContainer.
|
|
6256
|
-
*
|
|
6257
|
-
* @returns Metadata object describing this class
|
|
6258
|
-
*/
|
|
6259
|
-
static getMetadata(): sap.ui.base.Metadata;
|
|
6260
|
-
}
|
|
6261
6352
|
}
|
|
6262
6353
|
|
|
6263
6354
|
interface $FilterBarBaseSettings extends sap.ui.mdc.$ControlSettings {
|
|
@@ -6379,9 +6470,7 @@ declare namespace sap {
|
|
|
6379
6470
|
/**
|
|
6380
6471
|
* This event is fired after either a filter value or the visibility of a filter item has been changed.
|
|
6381
6472
|
*/
|
|
6382
|
-
filtersChanged?: (
|
|
6383
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.filterbar.FilterBarBase$FiltersChangedEventParameters>
|
|
6384
|
-
) => void;
|
|
6473
|
+
filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
|
|
6385
6474
|
}
|
|
6386
6475
|
|
|
6387
6476
|
interface FilterBarBase$FiltersChangedEventParameters {
|
|
@@ -6408,7 +6497,15 @@ declare namespace sap {
|
|
|
6408
6497
|
*
|
|
6409
6498
|
* The `FilterBarBase` control is the base for filter displaying controls in MDC.
|
|
6410
6499
|
*/
|
|
6411
|
-
class FilterBarBase
|
|
6500
|
+
class FilterBarBase
|
|
6501
|
+
extends sap.ui.mdc.Control
|
|
6502
|
+
implements
|
|
6503
|
+
sap.ui.mdc.IFilterSource,
|
|
6504
|
+
sap.ui.mdc.IFilter,
|
|
6505
|
+
sap.ui.mdc.IxState {
|
|
6506
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
6507
|
+
__implements__sap_ui_mdc_IFilter: boolean;
|
|
6508
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
6412
6509
|
/**
|
|
6413
6510
|
* Constructor for a new FilterBarBase.
|
|
6414
6511
|
*
|
|
@@ -6690,7 +6787,7 @@ declare namespace sap {
|
|
|
6690
6787
|
getBasicSearchField(): sap.ui.mdc.FilterField;
|
|
6691
6788
|
/**
|
|
6692
6789
|
* Returns the external conditions of the inner condition model. **Note:** This API returns only attributes
|
|
6693
|
-
* related to the {@link sap.ui.mdc.FilterBar#p13nMode} property configuration.
|
|
6790
|
+
* related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
|
|
6694
6791
|
*
|
|
6695
6792
|
* @returns Object containing the current status of the `FilterBarBase`
|
|
6696
6793
|
*/
|
|
@@ -7047,7 +7144,9 @@ declare namespace sap {
|
|
|
7047
7144
|
/**
|
|
7048
7145
|
* Triggers the search.
|
|
7049
7146
|
*
|
|
7050
|
-
* @returns
|
|
7147
|
+
* @returns In case the property {@link sap.ui.mdc.FilterBarBase#setSuspendSelection suspendSelection} is
|
|
7148
|
+
* set to `true` the method will be immediatelly resolved, otherwise it returns the result of the {@link sap.ui.mdc.FilterBarBase#validate }
|
|
7149
|
+
* call.
|
|
7051
7150
|
*/
|
|
7052
7151
|
triggerSearch(): Promise<any>;
|
|
7053
7152
|
/**
|
|
@@ -7080,7 +7179,7 @@ declare namespace sap {
|
|
|
7080
7179
|
*
|
|
7081
7180
|
* @returns Array of all inner controls in the layout item
|
|
7082
7181
|
*/
|
|
7083
|
-
getFilterFields():
|
|
7182
|
+
getFilterFields(): sap.ui.mdc.FilterField[];
|
|
7084
7183
|
/**
|
|
7085
7184
|
* Getter for the inner layout item.
|
|
7086
7185
|
*
|
|
@@ -7098,7 +7197,7 @@ declare namespace sap {
|
|
|
7098
7197
|
/**
|
|
7099
7198
|
* to be inserted
|
|
7100
7199
|
*/
|
|
7101
|
-
oControl:
|
|
7200
|
+
oControl: sap.ui.mdc.FilterField,
|
|
7102
7201
|
/**
|
|
7103
7202
|
* Position where the control is added
|
|
7104
7203
|
*/
|
|
@@ -7111,7 +7210,7 @@ declare namespace sap {
|
|
|
7111
7210
|
/**
|
|
7112
7211
|
* Control that is removed
|
|
7113
7212
|
*/
|
|
7114
|
-
oControl:
|
|
7213
|
+
oControl: sap.ui.mdc.FilterField
|
|
7115
7214
|
): void;
|
|
7116
7215
|
}
|
|
7117
7216
|
|
|
@@ -7136,9 +7235,9 @@ declare namespace sap {
|
|
|
7136
7235
|
*/
|
|
7137
7236
|
tooltip?: string;
|
|
7138
7237
|
/**
|
|
7139
|
-
* The
|
|
7238
|
+
* The data type of the property
|
|
7140
7239
|
*/
|
|
7141
|
-
|
|
7240
|
+
dataType: string;
|
|
7142
7241
|
/**
|
|
7143
7242
|
* Defines constraints for the data type of the property
|
|
7144
7243
|
*/
|
|
@@ -7177,20 +7276,8 @@ declare namespace sap {
|
|
|
7177
7276
|
maxConditions: int;
|
|
7178
7277
|
};
|
|
7179
7278
|
|
|
7180
|
-
/**
|
|
7181
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBarBase$FiltersChangedEventParameters'
|
|
7182
|
-
* in 1.115.1 and any later releases.
|
|
7183
|
-
*/
|
|
7184
|
-
type $FilterBarBaseFiltersChangedEventParameters = sap.ui.mdc.filterbar.FilterBarBase$FiltersChangedEventParameters;
|
|
7185
|
-
|
|
7186
7279
|
type FilterBarBase$FiltersChangedEvent = sap.ui.base.Event<FilterBarBase$FiltersChangedEventParameters>;
|
|
7187
7280
|
|
|
7188
|
-
/**
|
|
7189
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBarBase$SearchEventParameters'
|
|
7190
|
-
* in 1.115.1 and any later releases.
|
|
7191
|
-
*/
|
|
7192
|
-
type $FilterBarBaseSearchEventParameters = sap.ui.mdc.filterbar.FilterBarBase$SearchEventParameters;
|
|
7193
|
-
|
|
7194
7281
|
type FilterBarBase$SearchEvent = sap.ui.base.Event<FilterBarBase$SearchEventParameters>;
|
|
7195
7282
|
}
|
|
7196
7283
|
/**
|
|
@@ -7204,7 +7291,7 @@ declare namespace sap {
|
|
|
7204
7291
|
*
|
|
7205
7292
|
* Base-modules for {@link sap.ui.mdc.ValueHelp ValueHelp}
|
|
7206
7293
|
*
|
|
7207
|
-
* These modules
|
|
7294
|
+
* These modules must not be used stand-alone.
|
|
7208
7295
|
*/
|
|
7209
7296
|
namespace base {
|
|
7210
7297
|
interface $ContainerSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -7214,8 +7301,8 @@ declare namespace sap {
|
|
|
7214
7301
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7215
7302
|
|
|
7216
7303
|
/**
|
|
7217
|
-
* This property may be used by FilterableListContents to share basic search
|
|
7218
|
-
* scenarios
|
|
7304
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
7305
|
+
* scenarios.
|
|
7219
7306
|
*/
|
|
7220
7307
|
localFilterValue?:
|
|
7221
7308
|
| string
|
|
@@ -7223,7 +7310,7 @@ declare namespace sap {
|
|
|
7223
7310
|
|
|
7224
7311
|
/**
|
|
7225
7312
|
* Content of the container. This aggregation holds the actual controls enabling the user to select items
|
|
7226
|
-
* or create conditions (
|
|
7313
|
+
* or create conditions (for example, tables or condition panels).
|
|
7227
7314
|
*/
|
|
7228
7315
|
content?:
|
|
7229
7316
|
| sap.ui.mdc.valuehelp.base.Content[]
|
|
@@ -7232,57 +7319,51 @@ declare namespace sap {
|
|
|
7232
7319
|
| `{${string}}`;
|
|
7233
7320
|
|
|
7234
7321
|
/**
|
|
7235
|
-
*
|
|
7322
|
+
* This event is fired if the selected condition has changed.
|
|
7236
7323
|
*/
|
|
7237
|
-
select?: (
|
|
7238
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Container$SelectEventParameters>
|
|
7239
|
-
) => void;
|
|
7324
|
+
select?: (oEvent: Container$SelectEvent) => void;
|
|
7240
7325
|
|
|
7241
7326
|
/**
|
|
7242
|
-
*
|
|
7327
|
+
* This event is fired if a change of the value help is confirmed.
|
|
7243
7328
|
*/
|
|
7244
|
-
confirm?: (
|
|
7245
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Container$ConfirmEventParameters>
|
|
7246
|
-
) => void;
|
|
7329
|
+
confirm?: (oEvent: Container$ConfirmEvent) => void;
|
|
7247
7330
|
|
|
7248
7331
|
/**
|
|
7249
|
-
*
|
|
7332
|
+
* This event is fired if the value help is opened.
|
|
7250
7333
|
*/
|
|
7251
7334
|
opened?: (oEvent: sap.ui.base.Event) => void;
|
|
7252
7335
|
|
|
7253
7336
|
/**
|
|
7254
|
-
*
|
|
7337
|
+
* This event is fired if the value help is closed.
|
|
7255
7338
|
*/
|
|
7256
7339
|
closed?: (oEvent: sap.ui.base.Event) => void;
|
|
7257
7340
|
|
|
7258
7341
|
/**
|
|
7259
|
-
*
|
|
7342
|
+
* This event is fired if the change is cancelled.
|
|
7260
7343
|
*/
|
|
7261
7344
|
cancel?: (oEvent: sap.ui.base.Event) => void;
|
|
7262
7345
|
|
|
7263
7346
|
/**
|
|
7264
|
-
*
|
|
7347
|
+
* This event is fired if the container requests the delegate content.
|
|
7265
7348
|
*/
|
|
7266
7349
|
requestDelegateContent?: (
|
|
7267
|
-
oEvent:
|
|
7350
|
+
oEvent: Container$RequestDelegateContentEvent
|
|
7268
7351
|
) => void;
|
|
7269
7352
|
|
|
7270
7353
|
/**
|
|
7271
|
-
*
|
|
7354
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
7272
7355
|
*/
|
|
7273
7356
|
requestSwitchToDialog?: (oEvent: sap.ui.base.Event) => void;
|
|
7274
7357
|
|
|
7275
7358
|
/**
|
|
7276
|
-
*
|
|
7359
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
7277
7360
|
*/
|
|
7278
|
-
navigated?: (
|
|
7279
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Container$NavigatedEventParameters>
|
|
7280
|
-
) => void;
|
|
7361
|
+
navigated?: (oEvent: Container$NavigatedEvent) => void;
|
|
7281
7362
|
}
|
|
7282
7363
|
|
|
7283
7364
|
interface $ContentSettings extends sap.ui.core.$ElementSettings {
|
|
7284
7365
|
/**
|
|
7285
|
-
* Title text that appears tab header.
|
|
7366
|
+
* Title text that appears in the tab header.
|
|
7286
7367
|
*/
|
|
7287
7368
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7288
7369
|
|
|
@@ -7292,16 +7373,16 @@ declare namespace sap {
|
|
|
7292
7373
|
shortTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7293
7374
|
|
|
7294
7375
|
/**
|
|
7295
|
-
* Title text that appears in the dialog tokenizer panel
|
|
7376
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
7296
7377
|
*/
|
|
7297
7378
|
tokenizerTitle?:
|
|
7298
7379
|
| string
|
|
7299
7380
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7300
7381
|
|
|
7301
7382
|
/**
|
|
7302
|
-
* Conditions of the value help
|
|
7383
|
+
* Conditions of the value help.
|
|
7303
7384
|
*
|
|
7304
|
-
* **Note:** This property must not be set from outside, it
|
|
7385
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
7305
7386
|
*/
|
|
7306
7387
|
conditions?:
|
|
7307
7388
|
| object[]
|
|
@@ -7309,18 +7390,18 @@ declare namespace sap {
|
|
|
7309
7390
|
| `{${string}}`;
|
|
7310
7391
|
|
|
7311
7392
|
/**
|
|
7312
|
-
* Value for filtering ($search)
|
|
7393
|
+
* Value for filtering ($search).
|
|
7313
7394
|
*
|
|
7314
|
-
* **Note:** This property must not be set from outside, it
|
|
7395
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
7315
7396
|
*/
|
|
7316
7397
|
filterValue?:
|
|
7317
7398
|
| string
|
|
7318
7399
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7319
7400
|
|
|
7320
7401
|
/**
|
|
7321
|
-
* Internal configuration
|
|
7402
|
+
* Internal configuration.
|
|
7322
7403
|
*
|
|
7323
|
-
* **Note:** This property must not be set from outside, it
|
|
7404
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
7324
7405
|
*/
|
|
7325
7406
|
config?:
|
|
7326
7407
|
| object
|
|
@@ -7338,49 +7419,44 @@ declare namespace sap {
|
|
|
7338
7419
|
/**
|
|
7339
7420
|
* Content control that is put inside the parent container
|
|
7340
7421
|
*
|
|
7341
|
-
* **Note:** This aggregation must not be set from outside, it
|
|
7422
|
+
* **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
|
|
7342
7423
|
*/
|
|
7343
7424
|
displayContent?: sap.ui.core.Control;
|
|
7344
7425
|
|
|
7345
7426
|
/**
|
|
7346
|
-
*
|
|
7427
|
+
* This event is fired if the selected condition has changed.
|
|
7347
7428
|
*/
|
|
7348
|
-
select?: (
|
|
7349
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Content$SelectEventParameters>
|
|
7350
|
-
) => void;
|
|
7429
|
+
select?: (oEvent: Content$SelectEvent) => void;
|
|
7351
7430
|
|
|
7352
7431
|
/**
|
|
7353
|
-
*
|
|
7432
|
+
* This event is fired if a change of the content is confirmed.
|
|
7354
7433
|
*/
|
|
7355
|
-
confirm?: (
|
|
7356
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Content$ConfirmEventParameters>
|
|
7357
|
-
) => void;
|
|
7434
|
+
confirm?: (oEvent: Content$ConfirmEvent) => void;
|
|
7358
7435
|
|
|
7359
7436
|
/**
|
|
7360
|
-
*
|
|
7437
|
+
* This event is fired if the change is cancelled.
|
|
7361
7438
|
*/
|
|
7362
7439
|
cancel?: (oEvent: sap.ui.base.Event) => void;
|
|
7363
7440
|
|
|
7364
7441
|
/**
|
|
7365
|
-
*
|
|
7442
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
7366
7443
|
*/
|
|
7367
7444
|
requestSwitchToDialog?: (oEvent: sap.ui.base.Event) => void;
|
|
7368
7445
|
|
|
7369
7446
|
/**
|
|
7370
|
-
*
|
|
7447
|
+
* This event is fired if a navigation has been executed in the content.
|
|
7371
7448
|
*/
|
|
7372
|
-
navigated?: (
|
|
7373
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.valuehelp.base.Content$NavigatedEventParameters>
|
|
7374
|
-
) => void;
|
|
7449
|
+
navigated?: (oEvent: Content$NavigatedEvent) => void;
|
|
7375
7450
|
}
|
|
7376
7451
|
|
|
7377
7452
|
interface $FilterableListContentSettings
|
|
7378
7453
|
extends sap.ui.mdc.valuehelp.base.$ListContentSettings {
|
|
7379
7454
|
/**
|
|
7380
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
7455
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
7381
7456
|
* is used.
|
|
7382
7457
|
*
|
|
7383
|
-
* If set to `$search
|
|
7458
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
7459
|
+
* filtering.
|
|
7384
7460
|
*
|
|
7385
7461
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
7386
7462
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -7395,8 +7471,6 @@ declare namespace sap {
|
|
|
7395
7471
|
/**
|
|
7396
7472
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
7397
7473
|
* path of the key of the items.
|
|
7398
|
-
*
|
|
7399
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
7400
7474
|
*/
|
|
7401
7475
|
keyPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7402
7476
|
|
|
@@ -7416,7 +7490,7 @@ declare namespace sap {
|
|
|
7416
7490
|
group?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7417
7491
|
|
|
7418
7492
|
/**
|
|
7419
|
-
* FilterBar
|
|
7493
|
+
* {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
|
|
7420
7494
|
*/
|
|
7421
7495
|
filterBar?: sap.ui.mdc.filterbar.vh.FilterBar;
|
|
7422
7496
|
}
|
|
@@ -7446,7 +7520,7 @@ declare namespace sap {
|
|
|
7446
7520
|
| `{${string}}`;
|
|
7447
7521
|
|
|
7448
7522
|
/**
|
|
7449
|
-
* If set, the
|
|
7523
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
7450
7524
|
*/
|
|
7451
7525
|
useAsValueHelp?:
|
|
7452
7526
|
| boolean
|
|
@@ -7460,14 +7534,14 @@ declare namespace sap {
|
|
|
7460
7534
|
|
|
7461
7535
|
interface Container$ConfirmEventParameters {
|
|
7462
7536
|
/**
|
|
7463
|
-
*
|
|
7537
|
+
* `true` if the value help needs to be closed
|
|
7464
7538
|
*/
|
|
7465
7539
|
close?: boolean;
|
|
7466
7540
|
}
|
|
7467
7541
|
|
|
7468
7542
|
interface Container$NavigatedEventParameters {
|
|
7469
7543
|
/**
|
|
7470
|
-
*
|
|
7544
|
+
* `true` if the focus should be set back to the field.
|
|
7471
7545
|
*/
|
|
7472
7546
|
leaveFocus?: boolean;
|
|
7473
7547
|
|
|
@@ -7488,7 +7562,7 @@ declare namespace sap {
|
|
|
7488
7562
|
|
|
7489
7563
|
interface Container$RequestDelegateContentEventParameters {
|
|
7490
7564
|
/**
|
|
7491
|
-
* Content wrapper
|
|
7565
|
+
* Content wrapper ID for which contents are requested
|
|
7492
7566
|
*/
|
|
7493
7567
|
contentId?: string;
|
|
7494
7568
|
}
|
|
@@ -7513,14 +7587,14 @@ declare namespace sap {
|
|
|
7513
7587
|
|
|
7514
7588
|
interface Content$ConfirmEventParameters {
|
|
7515
7589
|
/**
|
|
7516
|
-
*
|
|
7590
|
+
* `true` if the value help needs to be closed
|
|
7517
7591
|
*/
|
|
7518
7592
|
close?: boolean;
|
|
7519
7593
|
}
|
|
7520
7594
|
|
|
7521
7595
|
interface Content$NavigatedEventParameters {
|
|
7522
7596
|
/**
|
|
7523
|
-
*
|
|
7597
|
+
* `true` if the focus should be set back to the field.
|
|
7524
7598
|
*/
|
|
7525
7599
|
leaveFocus?: boolean;
|
|
7526
7600
|
|
|
@@ -7562,7 +7636,7 @@ declare namespace sap {
|
|
|
7562
7636
|
/**
|
|
7563
7637
|
* Constructor for a new `Container`.
|
|
7564
7638
|
*
|
|
7565
|
-
* This is the basis for
|
|
7639
|
+
* This is the basis for various value help containers. It cannot be used directly.
|
|
7566
7640
|
*
|
|
7567
7641
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
7568
7642
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -7577,7 +7651,7 @@ declare namespace sap {
|
|
|
7577
7651
|
/**
|
|
7578
7652
|
* Constructor for a new `Container`.
|
|
7579
7653
|
*
|
|
7580
|
-
* This is the basis for
|
|
7654
|
+
* This is the basis for various value help containers. It cannot be used directly.
|
|
7581
7655
|
*
|
|
7582
7656
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
7583
7657
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -7643,7 +7717,7 @@ declare namespace sap {
|
|
|
7643
7717
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7644
7718
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7645
7719
|
*
|
|
7646
|
-
*
|
|
7720
|
+
* This event is fired if the change is cancelled.
|
|
7647
7721
|
*
|
|
7648
7722
|
* @returns Reference to `this` in order to allow method chaining
|
|
7649
7723
|
*/
|
|
@@ -7669,7 +7743,7 @@ declare namespace sap {
|
|
|
7669
7743
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7670
7744
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7671
7745
|
*
|
|
7672
|
-
*
|
|
7746
|
+
* This event is fired if the change is cancelled.
|
|
7673
7747
|
*
|
|
7674
7748
|
* @returns Reference to `this` in order to allow method chaining
|
|
7675
7749
|
*/
|
|
@@ -7690,7 +7764,7 @@ declare namespace sap {
|
|
|
7690
7764
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7691
7765
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7692
7766
|
*
|
|
7693
|
-
*
|
|
7767
|
+
* This event is fired if the value help is closed.
|
|
7694
7768
|
*
|
|
7695
7769
|
* @returns Reference to `this` in order to allow method chaining
|
|
7696
7770
|
*/
|
|
@@ -7716,7 +7790,7 @@ declare namespace sap {
|
|
|
7716
7790
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7717
7791
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7718
7792
|
*
|
|
7719
|
-
*
|
|
7793
|
+
* This event is fired if the value help is closed.
|
|
7720
7794
|
*
|
|
7721
7795
|
* @returns Reference to `this` in order to allow method chaining
|
|
7722
7796
|
*/
|
|
@@ -7737,7 +7811,7 @@ declare namespace sap {
|
|
|
7737
7811
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7738
7812
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7739
7813
|
*
|
|
7740
|
-
*
|
|
7814
|
+
* This event is fired if a change of the value help is confirmed.
|
|
7741
7815
|
*
|
|
7742
7816
|
* @returns Reference to `this` in order to allow method chaining
|
|
7743
7817
|
*/
|
|
@@ -7763,7 +7837,7 @@ declare namespace sap {
|
|
|
7763
7837
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7764
7838
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7765
7839
|
*
|
|
7766
|
-
*
|
|
7840
|
+
* This event is fired if a change of the value help is confirmed.
|
|
7767
7841
|
*
|
|
7768
7842
|
* @returns Reference to `this` in order to allow method chaining
|
|
7769
7843
|
*/
|
|
@@ -7784,7 +7858,7 @@ declare namespace sap {
|
|
|
7784
7858
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7785
7859
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7786
7860
|
*
|
|
7787
|
-
*
|
|
7861
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
7788
7862
|
*
|
|
7789
7863
|
* @returns Reference to `this` in order to allow method chaining
|
|
7790
7864
|
*/
|
|
@@ -7810,7 +7884,7 @@ declare namespace sap {
|
|
|
7810
7884
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7811
7885
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7812
7886
|
*
|
|
7813
|
-
*
|
|
7887
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
7814
7888
|
*
|
|
7815
7889
|
* @returns Reference to `this` in order to allow method chaining
|
|
7816
7890
|
*/
|
|
@@ -7831,7 +7905,7 @@ declare namespace sap {
|
|
|
7831
7905
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7832
7906
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7833
7907
|
*
|
|
7834
|
-
*
|
|
7908
|
+
* This event is fired if the value help is opened.
|
|
7835
7909
|
*
|
|
7836
7910
|
* @returns Reference to `this` in order to allow method chaining
|
|
7837
7911
|
*/
|
|
@@ -7857,7 +7931,7 @@ declare namespace sap {
|
|
|
7857
7931
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7858
7932
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7859
7933
|
*
|
|
7860
|
-
*
|
|
7934
|
+
* This event is fired if the value help is opened.
|
|
7861
7935
|
*
|
|
7862
7936
|
* @returns Reference to `this` in order to allow method chaining
|
|
7863
7937
|
*/
|
|
@@ -7879,7 +7953,7 @@ declare namespace sap {
|
|
|
7879
7953
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7880
7954
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7881
7955
|
*
|
|
7882
|
-
*
|
|
7956
|
+
* This event is fired if the container requests the delegate content.
|
|
7883
7957
|
*
|
|
7884
7958
|
* @returns Reference to `this` in order to allow method chaining
|
|
7885
7959
|
*/
|
|
@@ -7906,7 +7980,7 @@ declare namespace sap {
|
|
|
7906
7980
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7907
7981
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7908
7982
|
*
|
|
7909
|
-
*
|
|
7983
|
+
* This event is fired if the container requests the delegate content.
|
|
7910
7984
|
*
|
|
7911
7985
|
* @returns Reference to `this` in order to allow method chaining
|
|
7912
7986
|
*/
|
|
@@ -7928,7 +8002,7 @@ declare namespace sap {
|
|
|
7928
8002
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7929
8003
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7930
8004
|
*
|
|
7931
|
-
*
|
|
8005
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
7932
8006
|
*
|
|
7933
8007
|
* @returns Reference to `this` in order to allow method chaining
|
|
7934
8008
|
*/
|
|
@@ -7955,7 +8029,7 @@ declare namespace sap {
|
|
|
7955
8029
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7956
8030
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7957
8031
|
*
|
|
7958
|
-
*
|
|
8032
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
7959
8033
|
*
|
|
7960
8034
|
* @returns Reference to `this` in order to allow method chaining
|
|
7961
8035
|
*/
|
|
@@ -7976,7 +8050,7 @@ declare namespace sap {
|
|
|
7976
8050
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7977
8051
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
7978
8052
|
*
|
|
7979
|
-
*
|
|
8053
|
+
* This event is fired if the selected condition has changed.
|
|
7980
8054
|
*
|
|
7981
8055
|
* @returns Reference to `this` in order to allow method chaining
|
|
7982
8056
|
*/
|
|
@@ -8002,7 +8076,7 @@ declare namespace sap {
|
|
|
8002
8076
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8003
8077
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
8004
8078
|
*
|
|
8005
|
-
*
|
|
8079
|
+
* This event is fired if the selected condition has changed.
|
|
8006
8080
|
*
|
|
8007
8081
|
* @returns Reference to `this` in order to allow method chaining
|
|
8008
8082
|
*/
|
|
@@ -8020,7 +8094,7 @@ declare namespace sap {
|
|
|
8020
8094
|
/**
|
|
8021
8095
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8022
8096
|
*
|
|
8023
|
-
* Binds the content to the container
|
|
8097
|
+
* Binds the content to the container.
|
|
8024
8098
|
*/
|
|
8025
8099
|
bindContentToContainer(
|
|
8026
8100
|
/**
|
|
@@ -8031,7 +8105,7 @@ declare namespace sap {
|
|
|
8031
8105
|
/**
|
|
8032
8106
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8033
8107
|
*
|
|
8034
|
-
* Closes the container control or element
|
|
8108
|
+
* Closes the container control or element.
|
|
8035
8109
|
*/
|
|
8036
8110
|
closeContainer(): void;
|
|
8037
8111
|
/**
|
|
@@ -8285,7 +8359,7 @@ declare namespace sap {
|
|
|
8285
8359
|
/**
|
|
8286
8360
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8287
8361
|
*
|
|
8288
|
-
* Gets the
|
|
8362
|
+
* Gets the configuration for a specific content.
|
|
8289
8363
|
*
|
|
8290
8364
|
* @returns configuration
|
|
8291
8365
|
*/
|
|
@@ -8298,20 +8372,20 @@ declare namespace sap {
|
|
|
8298
8372
|
/**
|
|
8299
8373
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8300
8374
|
*
|
|
8301
|
-
* Returns the container control or element
|
|
8375
|
+
* Returns the container control or element that is opened (for example, a popover or dialog).
|
|
8302
8376
|
*/
|
|
8303
8377
|
getContainerControl(): void;
|
|
8304
8378
|
/**
|
|
8305
8379
|
* Gets content of aggregation {@link #getContent content}.
|
|
8306
8380
|
*
|
|
8307
8381
|
* Content of the container. This aggregation holds the actual controls enabling the user to select items
|
|
8308
|
-
* or create conditions (
|
|
8382
|
+
* or create conditions (for example, tables or condition panels).
|
|
8309
8383
|
*/
|
|
8310
8384
|
getContent(): sap.ui.mdc.valuehelp.base.Content[];
|
|
8311
8385
|
/**
|
|
8312
8386
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8313
8387
|
*
|
|
8314
|
-
* Returns control connected to value help
|
|
8388
|
+
* Returns control connected to value help.
|
|
8315
8389
|
*
|
|
8316
8390
|
* @returns connected control
|
|
8317
8391
|
*/
|
|
@@ -8319,8 +8393,8 @@ declare namespace sap {
|
|
|
8319
8393
|
/**
|
|
8320
8394
|
* Gets current value of property {@link #getLocalFilterValue localFilterValue}.
|
|
8321
8395
|
*
|
|
8322
|
-
* This property may be used by FilterableListContents to share basic search
|
|
8323
|
-
* scenarios
|
|
8396
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
8397
|
+
* scenarios.
|
|
8324
8398
|
*
|
|
8325
8399
|
* @returns Value of property `localFilterValue`
|
|
8326
8400
|
*/
|
|
@@ -8328,7 +8402,7 @@ declare namespace sap {
|
|
|
8328
8402
|
/**
|
|
8329
8403
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8330
8404
|
*
|
|
8331
|
-
* Returns the maximum allowed number of conditions, -1 if no limit is set
|
|
8405
|
+
* Returns the maximum allowed number of conditions, -1 if no limit is set.
|
|
8332
8406
|
*
|
|
8333
8407
|
* @returns maximum allowed number of conditions
|
|
8334
8408
|
*/
|
|
@@ -8336,15 +8410,15 @@ declare namespace sap {
|
|
|
8336
8410
|
/**
|
|
8337
8411
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8338
8412
|
*
|
|
8339
|
-
* Returns the
|
|
8413
|
+
* Returns the `Promise` for content creation.
|
|
8340
8414
|
*
|
|
8341
|
-
* @returns Promise for delegate content
|
|
8415
|
+
* @returns `Promise` for delegate content
|
|
8342
8416
|
*/
|
|
8343
8417
|
getRetrieveDelegateContentPromise(): Promise<any>;
|
|
8344
8418
|
/**
|
|
8345
8419
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8346
8420
|
*
|
|
8347
|
-
*
|
|
8421
|
+
* Returns the currently used content.
|
|
8348
8422
|
*
|
|
8349
8423
|
* @returns currently used content
|
|
8350
8424
|
*/
|
|
@@ -8362,7 +8436,7 @@ declare namespace sap {
|
|
|
8362
8436
|
/**
|
|
8363
8437
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8364
8438
|
*
|
|
8365
|
-
* Returns the UIArea of the content
|
|
8439
|
+
* Returns the `UIArea` of the content.
|
|
8366
8440
|
*
|
|
8367
8441
|
* @returns The UI area of the content or `null`
|
|
8368
8442
|
*/
|
|
@@ -8370,9 +8444,9 @@ declare namespace sap {
|
|
|
8370
8444
|
/**
|
|
8371
8445
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8372
8446
|
*
|
|
8373
|
-
* Handles the `cancelled` event of the content
|
|
8447
|
+
* Handles the `cancelled` event of the content.
|
|
8374
8448
|
*
|
|
8375
|
-
* Here the {@link #
|
|
8449
|
+
* Here the {@link #event:cancel cancel} event needs to be fired.
|
|
8376
8450
|
*/
|
|
8377
8451
|
handleCanceled(
|
|
8378
8452
|
/**
|
|
@@ -8383,7 +8457,7 @@ declare namespace sap {
|
|
|
8383
8457
|
/**
|
|
8384
8458
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8385
8459
|
*
|
|
8386
|
-
* Handles the `closed` event of the container control or element
|
|
8460
|
+
* Handles the `closed` event of the container control or element.
|
|
8387
8461
|
*/
|
|
8388
8462
|
handleClosed(
|
|
8389
8463
|
/**
|
|
@@ -8394,9 +8468,9 @@ declare namespace sap {
|
|
|
8394
8468
|
/**
|
|
8395
8469
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8396
8470
|
*
|
|
8397
|
-
* Handles the `confirmed` event of the content
|
|
8471
|
+
* Handles the `confirmed` event of the content.
|
|
8398
8472
|
*
|
|
8399
|
-
* Here the {@link #
|
|
8473
|
+
* Here the {@link #event:confirm confirm} event needs to be fired.
|
|
8400
8474
|
*/
|
|
8401
8475
|
handleConfirmed(
|
|
8402
8476
|
/**
|
|
@@ -8407,7 +8481,7 @@ declare namespace sap {
|
|
|
8407
8481
|
/**
|
|
8408
8482
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8409
8483
|
*
|
|
8410
|
-
* Handles the `requestSwitchToDialog` event of the content
|
|
8484
|
+
* Handles the `requestSwitchToDialog` event of the content.
|
|
8411
8485
|
*/
|
|
8412
8486
|
handleNavigated(
|
|
8413
8487
|
/**
|
|
@@ -8418,7 +8492,7 @@ declare namespace sap {
|
|
|
8418
8492
|
/**
|
|
8419
8493
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8420
8494
|
*
|
|
8421
|
-
* Handles the `opened` event of the container control or element
|
|
8495
|
+
* Handles the `opened` event of the container control or element.
|
|
8422
8496
|
*/
|
|
8423
8497
|
handleOpened(
|
|
8424
8498
|
/**
|
|
@@ -8429,7 +8503,7 @@ declare namespace sap {
|
|
|
8429
8503
|
/**
|
|
8430
8504
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8431
8505
|
*
|
|
8432
|
-
* Handles the `navigated` event of the content
|
|
8506
|
+
* Handles the `navigated` event of the content.
|
|
8433
8507
|
*/
|
|
8434
8508
|
handleRequestSwitchToDialog(
|
|
8435
8509
|
/**
|
|
@@ -8440,9 +8514,9 @@ declare namespace sap {
|
|
|
8440
8514
|
/**
|
|
8441
8515
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8442
8516
|
*
|
|
8443
|
-
* Handles the `select` event of the content
|
|
8517
|
+
* Handles the `select` event of the content.
|
|
8444
8518
|
*
|
|
8445
|
-
* Here the {@link #
|
|
8519
|
+
* Here the {@link #event:select select} event needs to be fired.
|
|
8446
8520
|
*/
|
|
8447
8521
|
handleSelect(
|
|
8448
8522
|
/**
|
|
@@ -8482,9 +8556,9 @@ declare namespace sap {
|
|
|
8482
8556
|
/**
|
|
8483
8557
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8484
8558
|
*
|
|
8485
|
-
* Returns if the value help is used for single selection
|
|
8559
|
+
* Returns if the value help is used for single selection.
|
|
8486
8560
|
*
|
|
8487
|
-
* @returns `true` id single
|
|
8561
|
+
* @returns `true` id single selection
|
|
8488
8562
|
*/
|
|
8489
8563
|
isSingleSelect(): boolean;
|
|
8490
8564
|
/**
|
|
@@ -8501,7 +8575,7 @@ declare namespace sap {
|
|
|
8501
8575
|
/**
|
|
8502
8576
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8503
8577
|
*
|
|
8504
|
-
* Observes property and aggregation changes
|
|
8578
|
+
* Observes property and aggregation changes.
|
|
8505
8579
|
*/
|
|
8506
8580
|
observeChanges(
|
|
8507
8581
|
/**
|
|
@@ -8512,7 +8586,7 @@ declare namespace sap {
|
|
|
8512
8586
|
/**
|
|
8513
8587
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8514
8588
|
*
|
|
8515
|
-
* Opens the container control or element
|
|
8589
|
+
* Opens the container control or element.
|
|
8516
8590
|
*/
|
|
8517
8591
|
openContainer(
|
|
8518
8592
|
/**
|
|
@@ -8527,7 +8601,7 @@ declare namespace sap {
|
|
|
8527
8601
|
/**
|
|
8528
8602
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8529
8603
|
*
|
|
8530
|
-
* Places the content into the container control or element
|
|
8604
|
+
* Places the content into the container control or element.
|
|
8531
8605
|
*
|
|
8532
8606
|
* @returns container
|
|
8533
8607
|
*/
|
|
@@ -8559,8 +8633,8 @@ declare namespace sap {
|
|
|
8559
8633
|
/**
|
|
8560
8634
|
* Sets a new value for property {@link #getLocalFilterValue localFilterValue}.
|
|
8561
8635
|
*
|
|
8562
|
-
* This property may be used by FilterableListContents to share basic search
|
|
8563
|
-
* scenarios
|
|
8636
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
8637
|
+
* scenarios.
|
|
8564
8638
|
*
|
|
8565
8639
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8566
8640
|
*
|
|
@@ -8592,7 +8666,7 @@ declare namespace sap {
|
|
|
8592
8666
|
/**
|
|
8593
8667
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8594
8668
|
*
|
|
8595
|
-
* Unbinds the content from the container
|
|
8669
|
+
* Unbinds the content from the container.
|
|
8596
8670
|
*/
|
|
8597
8671
|
unbindContentFromContainer(
|
|
8598
8672
|
/**
|
|
@@ -8610,7 +8684,7 @@ declare namespace sap {
|
|
|
8610
8684
|
/**
|
|
8611
8685
|
* Constructor for a new `Content`.
|
|
8612
8686
|
*
|
|
8613
|
-
* This is the basis for
|
|
8687
|
+
* This is the basis for various types of value help content. It cannot be used directly.
|
|
8614
8688
|
*
|
|
8615
8689
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8616
8690
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -8625,7 +8699,7 @@ declare namespace sap {
|
|
|
8625
8699
|
/**
|
|
8626
8700
|
* Constructor for a new `Content`.
|
|
8627
8701
|
*
|
|
8628
|
-
* This is the basis for
|
|
8702
|
+
* This is the basis for various types of value help content. It cannot be used directly.
|
|
8629
8703
|
*
|
|
8630
8704
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
8631
8705
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -8677,7 +8751,7 @@ declare namespace sap {
|
|
|
8677
8751
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8678
8752
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8679
8753
|
*
|
|
8680
|
-
*
|
|
8754
|
+
* This event is fired if the change is cancelled.
|
|
8681
8755
|
*
|
|
8682
8756
|
* @returns Reference to `this` in order to allow method chaining
|
|
8683
8757
|
*/
|
|
@@ -8702,7 +8776,7 @@ declare namespace sap {
|
|
|
8702
8776
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8703
8777
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8704
8778
|
*
|
|
8705
|
-
*
|
|
8779
|
+
* This event is fired if the change is cancelled.
|
|
8706
8780
|
*
|
|
8707
8781
|
* @returns Reference to `this` in order to allow method chaining
|
|
8708
8782
|
*/
|
|
@@ -8722,7 +8796,7 @@ declare namespace sap {
|
|
|
8722
8796
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8723
8797
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8724
8798
|
*
|
|
8725
|
-
*
|
|
8799
|
+
* This event is fired if a change of the content is confirmed.
|
|
8726
8800
|
*
|
|
8727
8801
|
* @returns Reference to `this` in order to allow method chaining
|
|
8728
8802
|
*/
|
|
@@ -8747,7 +8821,7 @@ declare namespace sap {
|
|
|
8747
8821
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8748
8822
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8749
8823
|
*
|
|
8750
|
-
*
|
|
8824
|
+
* This event is fired if a change of the content is confirmed.
|
|
8751
8825
|
*
|
|
8752
8826
|
* @returns Reference to `this` in order to allow method chaining
|
|
8753
8827
|
*/
|
|
@@ -8767,7 +8841,7 @@ declare namespace sap {
|
|
|
8767
8841
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8768
8842
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8769
8843
|
*
|
|
8770
|
-
*
|
|
8844
|
+
* This event is fired if a navigation has been executed in the content.
|
|
8771
8845
|
*
|
|
8772
8846
|
* @returns Reference to `this` in order to allow method chaining
|
|
8773
8847
|
*/
|
|
@@ -8792,7 +8866,7 @@ declare namespace sap {
|
|
|
8792
8866
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8793
8867
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8794
8868
|
*
|
|
8795
|
-
*
|
|
8869
|
+
* This event is fired if a navigation has been executed in the content.
|
|
8796
8870
|
*
|
|
8797
8871
|
* @returns Reference to `this` in order to allow method chaining
|
|
8798
8872
|
*/
|
|
@@ -8813,7 +8887,7 @@ declare namespace sap {
|
|
|
8813
8887
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8814
8888
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8815
8889
|
*
|
|
8816
|
-
*
|
|
8890
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
8817
8891
|
*
|
|
8818
8892
|
* @returns Reference to `this` in order to allow method chaining
|
|
8819
8893
|
*/
|
|
@@ -8839,7 +8913,7 @@ declare namespace sap {
|
|
|
8839
8913
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8840
8914
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8841
8915
|
*
|
|
8842
|
-
*
|
|
8916
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
8843
8917
|
*
|
|
8844
8918
|
* @returns Reference to `this` in order to allow method chaining
|
|
8845
8919
|
*/
|
|
@@ -8859,7 +8933,7 @@ declare namespace sap {
|
|
|
8859
8933
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8860
8934
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8861
8935
|
*
|
|
8862
|
-
*
|
|
8936
|
+
* This event is fired if the selected condition has changed.
|
|
8863
8937
|
*
|
|
8864
8938
|
* @returns Reference to `this` in order to allow method chaining
|
|
8865
8939
|
*/
|
|
@@ -8884,7 +8958,7 @@ declare namespace sap {
|
|
|
8884
8958
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
8885
8959
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
8886
8960
|
*
|
|
8887
|
-
*
|
|
8961
|
+
* This event is fired if the selected condition has changed.
|
|
8888
8962
|
*
|
|
8889
8963
|
* @returns Reference to `this` in order to allow method chaining
|
|
8890
8964
|
*/
|
|
@@ -8916,7 +8990,7 @@ declare namespace sap {
|
|
|
8916
8990
|
*/
|
|
8917
8991
|
createCondition(
|
|
8918
8992
|
/**
|
|
8919
|
-
* Value of the condition. For item conditions this must be the key.
|
|
8993
|
+
* Value of the condition. For item conditions, this must be the key.
|
|
8920
8994
|
*/
|
|
8921
8995
|
vValue: any,
|
|
8922
8996
|
/**
|
|
@@ -8924,7 +8998,7 @@ declare namespace sap {
|
|
|
8924
8998
|
*/
|
|
8925
8999
|
sDescription?: string,
|
|
8926
9000
|
/**
|
|
8927
|
-
*
|
|
9001
|
+
* Payload
|
|
8928
9002
|
*/
|
|
8929
9003
|
oPayload?: object
|
|
8930
9004
|
): sap.ui.mdc.condition.ConditionObject;
|
|
@@ -9088,9 +9162,9 @@ declare namespace sap {
|
|
|
9088
9162
|
/**
|
|
9089
9163
|
* Gets current value of property {@link #getConditions conditions}.
|
|
9090
9164
|
*
|
|
9091
|
-
* Conditions of the value help
|
|
9165
|
+
* Conditions of the value help.
|
|
9092
9166
|
*
|
|
9093
|
-
* **Note:** This property must not be set from outside, it
|
|
9167
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9094
9168
|
*
|
|
9095
9169
|
* Default value is `[]`.
|
|
9096
9170
|
*
|
|
@@ -9100,9 +9174,9 @@ declare namespace sap {
|
|
|
9100
9174
|
/**
|
|
9101
9175
|
* Gets current value of property {@link #getConfig config}.
|
|
9102
9176
|
*
|
|
9103
|
-
* Internal configuration
|
|
9177
|
+
* Internal configuration.
|
|
9104
9178
|
*
|
|
9105
|
-
* **Note:** This property must not be set from outside, it
|
|
9179
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9106
9180
|
*
|
|
9107
9181
|
* Default value is `{}`.
|
|
9108
9182
|
*
|
|
@@ -9112,9 +9186,9 @@ declare namespace sap {
|
|
|
9112
9186
|
/**
|
|
9113
9187
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9114
9188
|
*
|
|
9115
|
-
* Returns control connected to value help
|
|
9189
|
+
* Returns control connected to value help.
|
|
9116
9190
|
*
|
|
9117
|
-
* @returns
|
|
9191
|
+
* @returns Connected control
|
|
9118
9192
|
*/
|
|
9119
9193
|
getControl(): sap.ui.core.Control;
|
|
9120
9194
|
/**
|
|
@@ -9122,15 +9196,15 @@ declare namespace sap {
|
|
|
9122
9196
|
*
|
|
9123
9197
|
* Content control that is put inside the parent container
|
|
9124
9198
|
*
|
|
9125
|
-
* **Note:** This aggregation must not be set from outside, it
|
|
9199
|
+
* **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
|
|
9126
9200
|
*/
|
|
9127
9201
|
getDisplayContent(): sap.ui.core.Control;
|
|
9128
9202
|
/**
|
|
9129
9203
|
* Gets current value of property {@link #getFilterValue filterValue}.
|
|
9130
9204
|
*
|
|
9131
|
-
* Value for filtering ($search)
|
|
9205
|
+
* Value for filtering ($search).
|
|
9132
9206
|
*
|
|
9133
|
-
* **Note:** This property must not be set from outside, it
|
|
9207
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9134
9208
|
*
|
|
9135
9209
|
* Default value is `empty string`.
|
|
9136
9210
|
*
|
|
@@ -9140,11 +9214,11 @@ declare namespace sap {
|
|
|
9140
9214
|
/**
|
|
9141
9215
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9142
9216
|
*
|
|
9143
|
-
* Returns
|
|
9217
|
+
* Returns the maximum allowed number of conditions, -1 if no limit is set.
|
|
9144
9218
|
*
|
|
9145
|
-
* @returns
|
|
9219
|
+
* @returns maximum allowed number of conditions
|
|
9146
9220
|
*/
|
|
9147
|
-
getMaxConditions():
|
|
9221
|
+
getMaxConditions(): int;
|
|
9148
9222
|
/**
|
|
9149
9223
|
* Gets current value of property {@link #getShortTitle shortTitle}.
|
|
9150
9224
|
*
|
|
@@ -9158,7 +9232,7 @@ declare namespace sap {
|
|
|
9158
9232
|
/**
|
|
9159
9233
|
* Gets current value of property {@link #getTitle title}.
|
|
9160
9234
|
*
|
|
9161
|
-
* Title text that appears tab header.
|
|
9235
|
+
* Title text that appears in the tab header.
|
|
9162
9236
|
*
|
|
9163
9237
|
* Default value is `empty string`.
|
|
9164
9238
|
*
|
|
@@ -9168,7 +9242,7 @@ declare namespace sap {
|
|
|
9168
9242
|
/**
|
|
9169
9243
|
* Gets current value of property {@link #getTokenizerTitle tokenizerTitle}.
|
|
9170
9244
|
*
|
|
9171
|
-
* Title text that appears in the dialog tokenizer panel
|
|
9245
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
9172
9246
|
*
|
|
9173
9247
|
* Default value is `empty string`.
|
|
9174
9248
|
*
|
|
@@ -9178,7 +9252,7 @@ declare namespace sap {
|
|
|
9178
9252
|
/**
|
|
9179
9253
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9180
9254
|
*
|
|
9181
|
-
*
|
|
9255
|
+
* Returns the used `ValueHelpDelegate`.
|
|
9182
9256
|
*
|
|
9183
9257
|
* @returns `Delegate` module
|
|
9184
9258
|
*/
|
|
@@ -9186,7 +9260,7 @@ declare namespace sap {
|
|
|
9186
9260
|
/**
|
|
9187
9261
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9188
9262
|
*
|
|
9189
|
-
* Determines the `ValueHelp` instance
|
|
9263
|
+
* Determines the `ValueHelp` instance.
|
|
9190
9264
|
*
|
|
9191
9265
|
* @returns The `ValueHelp` instance
|
|
9192
9266
|
*/
|
|
@@ -9204,7 +9278,7 @@ declare namespace sap {
|
|
|
9204
9278
|
/**
|
|
9205
9279
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9206
9280
|
*
|
|
9207
|
-
* Called if the `conditions` property changed
|
|
9281
|
+
* Called if the `conditions` property changed.
|
|
9208
9282
|
*/
|
|
9209
9283
|
handleConditionsUpdate(
|
|
9210
9284
|
/**
|
|
@@ -9215,7 +9289,7 @@ declare namespace sap {
|
|
|
9215
9289
|
/**
|
|
9216
9290
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9217
9291
|
*
|
|
9218
|
-
* Called if the `filterValue` property changed
|
|
9292
|
+
* Called if the `filterValue` property changed.
|
|
9219
9293
|
*/
|
|
9220
9294
|
handleFilterValueUpdate(
|
|
9221
9295
|
/**
|
|
@@ -9226,7 +9300,7 @@ declare namespace sap {
|
|
|
9226
9300
|
/**
|
|
9227
9301
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9228
9302
|
*
|
|
9229
|
-
* Checks if the parent container is open
|
|
9303
|
+
* Checks if the parent container is open.
|
|
9230
9304
|
*
|
|
9231
9305
|
* @returns `true` if open
|
|
9232
9306
|
*/
|
|
@@ -9234,7 +9308,7 @@ declare namespace sap {
|
|
|
9234
9308
|
/**
|
|
9235
9309
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9236
9310
|
*
|
|
9237
|
-
* Checks if the parent container is opening
|
|
9311
|
+
* Checks if the parent container is opening.
|
|
9238
9312
|
*
|
|
9239
9313
|
* @returns `true` if opening
|
|
9240
9314
|
*/
|
|
@@ -9242,33 +9316,33 @@ declare namespace sap {
|
|
|
9242
9316
|
/**
|
|
9243
9317
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9244
9318
|
*
|
|
9245
|
-
* Returns if the value help is used for single selection
|
|
9319
|
+
* Returns if the value help is used for single selection.
|
|
9246
9320
|
*
|
|
9247
|
-
* @returns `true`
|
|
9321
|
+
* @returns `true` if single selection
|
|
9248
9322
|
*/
|
|
9249
9323
|
isSingleSelect(): boolean;
|
|
9250
9324
|
/**
|
|
9251
9325
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9252
9326
|
*
|
|
9253
|
-
* Determines if the container of the content is used as typeAhead inside the value help
|
|
9327
|
+
* Determines if the container of the content is used as `typeAhead` inside the value help.
|
|
9254
9328
|
*
|
|
9255
|
-
* **Note:** This function is used by the content and must not be used from outside
|
|
9329
|
+
* **Note:** This function is used by the content and must not be used from outside.
|
|
9256
9330
|
*
|
|
9257
|
-
* @returns
|
|
9331
|
+
* @returns `true` if used as `typeahead`
|
|
9258
9332
|
*/
|
|
9259
9333
|
isTypeahead(): boolean;
|
|
9260
9334
|
/**
|
|
9261
9335
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9262
9336
|
*
|
|
9263
|
-
* Determines if delegate of the value help
|
|
9337
|
+
* Determines if delegate of the value help has been initialized.
|
|
9264
9338
|
*
|
|
9265
|
-
* @returns
|
|
9339
|
+
* @returns `true` if delegate has been initialized
|
|
9266
9340
|
*/
|
|
9267
9341
|
isValueHelpDelegateInitialized(): boolean;
|
|
9268
9342
|
/**
|
|
9269
9343
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9270
9344
|
*
|
|
9271
|
-
* Observes property and aggregation changes
|
|
9345
|
+
* Observes property and aggregation changes.
|
|
9272
9346
|
*/
|
|
9273
9347
|
observeChanges(
|
|
9274
9348
|
/**
|
|
@@ -9279,37 +9353,37 @@ declare namespace sap {
|
|
|
9279
9353
|
/**
|
|
9280
9354
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9281
9355
|
*
|
|
9282
|
-
* Called if ValueHelp connection to
|
|
9356
|
+
* Called if `ValueHelp` connection to a control changed.
|
|
9283
9357
|
*/
|
|
9284
9358
|
onConnectionChange(): void;
|
|
9285
9359
|
/**
|
|
9286
9360
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9287
9361
|
*
|
|
9288
|
-
* Performs logic needed if the container closes
|
|
9362
|
+
* Performs logic needed if the container closes.
|
|
9289
9363
|
*/
|
|
9290
9364
|
onContainerClose(): void;
|
|
9291
9365
|
/**
|
|
9292
9366
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9293
9367
|
*
|
|
9294
|
-
* Performs logic needed if the container opens
|
|
9368
|
+
* Performs logic needed if the container opens.
|
|
9295
9369
|
*/
|
|
9296
9370
|
onContainerOpen(): void;
|
|
9297
9371
|
/**
|
|
9298
9372
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9299
9373
|
*
|
|
9300
|
-
* Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}
|
|
9374
|
+
* Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}.
|
|
9301
9375
|
*
|
|
9302
|
-
* **Note:** This function is used by the content and must not be used from outside
|
|
9376
|
+
* **Note:** This function is used by the content and must not be used from outside.
|
|
9303
9377
|
*
|
|
9304
|
-
* @returns
|
|
9378
|
+
* @returns `true` if a scrolling mechanism is needed
|
|
9305
9379
|
*/
|
|
9306
9380
|
provideScrolling(): boolean;
|
|
9307
9381
|
/**
|
|
9308
9382
|
* Sets a new value for property {@link #getConditions conditions}.
|
|
9309
9383
|
*
|
|
9310
|
-
* Conditions of the value help
|
|
9384
|
+
* Conditions of the value help.
|
|
9311
9385
|
*
|
|
9312
|
-
* **Note:** This property must not be set from outside, it
|
|
9386
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9313
9387
|
*
|
|
9314
9388
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9315
9389
|
*
|
|
@@ -9326,9 +9400,9 @@ declare namespace sap {
|
|
|
9326
9400
|
/**
|
|
9327
9401
|
* Sets a new value for property {@link #getConfig config}.
|
|
9328
9402
|
*
|
|
9329
|
-
* Internal configuration
|
|
9403
|
+
* Internal configuration.
|
|
9330
9404
|
*
|
|
9331
|
-
* **Note:** This property must not be set from outside, it
|
|
9405
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9332
9406
|
*
|
|
9333
9407
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9334
9408
|
*
|
|
@@ -9356,9 +9430,9 @@ declare namespace sap {
|
|
|
9356
9430
|
/**
|
|
9357
9431
|
* Sets a new value for property {@link #getFilterValue filterValue}.
|
|
9358
9432
|
*
|
|
9359
|
-
* Value for filtering ($search)
|
|
9433
|
+
* Value for filtering ($search).
|
|
9360
9434
|
*
|
|
9361
|
-
* **Note:** This property must not be set from outside, it
|
|
9435
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
9362
9436
|
*
|
|
9363
9437
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9364
9438
|
*
|
|
@@ -9392,7 +9466,7 @@ declare namespace sap {
|
|
|
9392
9466
|
/**
|
|
9393
9467
|
* Sets a new value for property {@link #getTitle title}.
|
|
9394
9468
|
*
|
|
9395
|
-
* Title text that appears tab header.
|
|
9469
|
+
* Title text that appears in the tab header.
|
|
9396
9470
|
*
|
|
9397
9471
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9398
9472
|
*
|
|
@@ -9409,7 +9483,7 @@ declare namespace sap {
|
|
|
9409
9483
|
/**
|
|
9410
9484
|
* Sets a new value for property {@link #getTokenizerTitle tokenizerTitle}.
|
|
9411
9485
|
*
|
|
9412
|
-
* Title text that appears in the dialog tokenizer panel
|
|
9486
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
9413
9487
|
*
|
|
9414
9488
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9415
9489
|
*
|
|
@@ -9451,7 +9525,7 @@ declare namespace sap {
|
|
|
9451
9525
|
/**
|
|
9452
9526
|
* Constructor for a new `FilterableListContent`.
|
|
9453
9527
|
*
|
|
9454
|
-
* This is the basis for
|
|
9528
|
+
* This is the basis for various types of value help content with filter functionality. It cannot be used
|
|
9455
9529
|
* directly.
|
|
9456
9530
|
*
|
|
9457
9531
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -9467,7 +9541,7 @@ declare namespace sap {
|
|
|
9467
9541
|
/**
|
|
9468
9542
|
* Constructor for a new `FilterableListContent`.
|
|
9469
9543
|
*
|
|
9470
|
-
* This is the basis for
|
|
9544
|
+
* This is the basis for various types of value help content with filter functionality. It cannot be used
|
|
9471
9545
|
* directly.
|
|
9472
9546
|
*
|
|
9473
9547
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -9520,19 +9594,19 @@ declare namespace sap {
|
|
|
9520
9594
|
/**
|
|
9521
9595
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9522
9596
|
*
|
|
9523
|
-
* Applies the filter to the content control
|
|
9597
|
+
* Applies the filter to the content control.
|
|
9524
9598
|
*/
|
|
9525
9599
|
applyFilters(): void;
|
|
9526
9600
|
/**
|
|
9527
9601
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9528
9602
|
*
|
|
9529
|
-
*
|
|
9603
|
+
* Creates a payload for a value.
|
|
9530
9604
|
*
|
|
9531
9605
|
* @returns payload
|
|
9532
9606
|
*/
|
|
9533
9607
|
createConditionPayload(
|
|
9534
9608
|
/**
|
|
9535
|
-
*
|
|
9609
|
+
* Values (key, description)
|
|
9536
9610
|
*/
|
|
9537
9611
|
aValues: any[],
|
|
9538
9612
|
/**
|
|
@@ -9560,16 +9634,17 @@ declare namespace sap {
|
|
|
9560
9634
|
/**
|
|
9561
9635
|
* Gets content of aggregation {@link #getFilterBar filterBar}.
|
|
9562
9636
|
*
|
|
9563
|
-
* FilterBar
|
|
9637
|
+
* {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
|
|
9564
9638
|
*/
|
|
9565
9639
|
getFilterBar(): sap.ui.mdc.filterbar.vh.FilterBar;
|
|
9566
9640
|
/**
|
|
9567
9641
|
* Gets current value of property {@link #getFilterFields filterFields}.
|
|
9568
9642
|
*
|
|
9569
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
9643
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
9570
9644
|
* is used.
|
|
9571
9645
|
*
|
|
9572
|
-
* If set to `$search
|
|
9646
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
9647
|
+
* filtering.
|
|
9573
9648
|
*
|
|
9574
9649
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
9575
9650
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -9597,9 +9672,9 @@ declare namespace sap {
|
|
|
9597
9672
|
/**
|
|
9598
9673
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9599
9674
|
*
|
|
9600
|
-
* Gets an item for a BindingContext
|
|
9675
|
+
* Gets an item for a `BindingContext`.
|
|
9601
9676
|
*
|
|
9602
|
-
* @returns Item object containing `key`, `description
|
|
9677
|
+
* @returns Item object containing `key`, `description`, and `payload`
|
|
9603
9678
|
*/
|
|
9604
9679
|
getItemFromContext(
|
|
9605
9680
|
/**
|
|
@@ -9607,9 +9682,9 @@ declare namespace sap {
|
|
|
9607
9682
|
*/
|
|
9608
9683
|
oBindingContext: sap.ui.model.Context,
|
|
9609
9684
|
/**
|
|
9610
|
-
*
|
|
9685
|
+
* Options
|
|
9611
9686
|
*/
|
|
9612
|
-
oOptions
|
|
9687
|
+
oOptions?: object
|
|
9613
9688
|
): object;
|
|
9614
9689
|
/**
|
|
9615
9690
|
* Gets current value of property {@link #getKeyPath keyPath}.
|
|
@@ -9617,8 +9692,6 @@ declare namespace sap {
|
|
|
9617
9692
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
9618
9693
|
* path of the key of the items.
|
|
9619
9694
|
*
|
|
9620
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
9621
|
-
*
|
|
9622
9695
|
* Default value is `empty string`.
|
|
9623
9696
|
*
|
|
9624
9697
|
* @returns Value of property `keyPath`
|
|
@@ -9627,15 +9700,15 @@ declare namespace sap {
|
|
|
9627
9700
|
/**
|
|
9628
9701
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9629
9702
|
*
|
|
9630
|
-
* Gets the `BindingInfo` of the content
|
|
9703
|
+
* Gets the `BindingInfo` of the content.
|
|
9631
9704
|
*
|
|
9632
|
-
* @returns ListBindingInfo
|
|
9705
|
+
* @returns `ListBindingInfo`
|
|
9633
9706
|
*/
|
|
9634
9707
|
getListBindingInfo(): sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
9635
9708
|
/**
|
|
9636
9709
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9637
9710
|
*
|
|
9638
|
-
* Gets the conditions that are selecatble from list content
|
|
9711
|
+
* Gets the conditions that are selecatble from list content.
|
|
9639
9712
|
*
|
|
9640
9713
|
* This are validated conditions as other conditions are shown on the {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel}
|
|
9641
9714
|
*
|
|
@@ -9674,10 +9747,11 @@ declare namespace sap {
|
|
|
9674
9747
|
/**
|
|
9675
9748
|
* Sets a new value for property {@link #getFilterFields filterFields}.
|
|
9676
9749
|
*
|
|
9677
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
9750
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
9678
9751
|
* is used.
|
|
9679
9752
|
*
|
|
9680
|
-
* If set to `$search
|
|
9753
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
9754
|
+
* filtering.
|
|
9681
9755
|
*
|
|
9682
9756
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
9683
9757
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -9722,8 +9796,6 @@ declare namespace sap {
|
|
|
9722
9796
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
9723
9797
|
* path of the key of the items.
|
|
9724
9798
|
*
|
|
9725
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
9726
|
-
*
|
|
9727
9799
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9728
9800
|
*
|
|
9729
9801
|
* Default value is `empty string`.
|
|
@@ -9746,7 +9818,7 @@ declare namespace sap {
|
|
|
9746
9818
|
/**
|
|
9747
9819
|
* Constructor for a new `ListContent`.
|
|
9748
9820
|
*
|
|
9749
|
-
* This is the basis for
|
|
9821
|
+
* This is the basis for various types of value help list content. It cannot be used directly.
|
|
9750
9822
|
*
|
|
9751
9823
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9752
9824
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -9761,7 +9833,7 @@ declare namespace sap {
|
|
|
9761
9833
|
/**
|
|
9762
9834
|
* Constructor for a new `ListContent`.
|
|
9763
9835
|
*
|
|
9764
|
-
* This is the basis for
|
|
9836
|
+
* This is the basis for various types of value help list content. It cannot be used directly.
|
|
9765
9837
|
*
|
|
9766
9838
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
9767
9839
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -9827,15 +9899,15 @@ declare namespace sap {
|
|
|
9827
9899
|
/**
|
|
9828
9900
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9829
9901
|
*
|
|
9830
|
-
* Gets the `ListBinding` of the content
|
|
9902
|
+
* Gets the `ListBinding` of the content.
|
|
9831
9903
|
*
|
|
9832
|
-
* @returns ListBinding
|
|
9904
|
+
* @returns `ListBinding`
|
|
9833
9905
|
*/
|
|
9834
9906
|
getListBinding(): sap.ui.model.ListBinding;
|
|
9835
9907
|
/**
|
|
9836
9908
|
* Gets current value of property {@link #getUseAsValueHelp useAsValueHelp}.
|
|
9837
9909
|
*
|
|
9838
|
-
* If set, the
|
|
9910
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
9839
9911
|
*
|
|
9840
9912
|
* Default value is `true`.
|
|
9841
9913
|
*
|
|
@@ -9878,7 +9950,7 @@ declare namespace sap {
|
|
|
9878
9950
|
/**
|
|
9879
9951
|
* Sets a new value for property {@link #getUseAsValueHelp useAsValueHelp}.
|
|
9880
9952
|
*
|
|
9881
|
-
* If set, the
|
|
9953
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
9882
9954
|
*
|
|
9883
9955
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9884
9956
|
*
|
|
@@ -9926,18 +9998,18 @@ declare namespace sap {
|
|
|
9926
9998
|
*/
|
|
9927
9999
|
parsedValue?: any;
|
|
9928
10000
|
/**
|
|
9929
|
-
* Contextual information provided by condition payload or inParameters
|
|
9930
|
-
* if the description needs to be determined for an existing condition.
|
|
10001
|
+
* Contextual information provided by condition `payload` or `inParameters`/`outParameters`. This is only
|
|
10002
|
+
* filled if the description needs to be determined for an existing condition.
|
|
9931
10003
|
*/
|
|
9932
10004
|
context?: {
|
|
9933
10005
|
/**
|
|
9934
|
-
* In parameters of the current condition (
|
|
9935
|
-
* older
|
|
10006
|
+
* In parameters of the current condition (`inParameters` are not used any longer, but it might be filled
|
|
10007
|
+
* in older conditions stored in variants.)
|
|
9936
10008
|
*/
|
|
9937
10009
|
inParameter?: object;
|
|
9938
10010
|
/**
|
|
9939
|
-
* Out parameters of the current condition (
|
|
9940
|
-
* in older
|
|
10011
|
+
* Out parameters of the current condition (`outParameters` are not used any longer, but it might be filled
|
|
10012
|
+
* in older conditions stored in variants.)
|
|
9941
10013
|
*/
|
|
9942
10014
|
ouParameter?: object;
|
|
9943
10015
|
/**
|
|
@@ -9946,8 +10018,8 @@ declare namespace sap {
|
|
|
9946
10018
|
payload?: object;
|
|
9947
10019
|
};
|
|
9948
10020
|
/**
|
|
9949
|
-
* `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to
|
|
9950
|
-
* different row.
|
|
10021
|
+
* `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
|
|
10022
|
+
* a different row.
|
|
9951
10023
|
*/
|
|
9952
10024
|
bindingContext?: sap.ui.model.Context;
|
|
9953
10025
|
/**
|
|
@@ -9961,7 +10033,7 @@ declare namespace sap {
|
|
|
9961
10033
|
*/
|
|
9962
10034
|
checkDescription: boolean;
|
|
9963
10035
|
/**
|
|
9964
|
-
* If set, the check is done case
|
|
10036
|
+
* If set, the check is done case-sensitively
|
|
9965
10037
|
*/
|
|
9966
10038
|
caseSensitive?: boolean;
|
|
9967
10039
|
/**
|
|
@@ -9970,116 +10042,38 @@ declare namespace sap {
|
|
|
9970
10042
|
control: sap.ui.core.Control;
|
|
9971
10043
|
};
|
|
9972
10044
|
|
|
9973
|
-
/**
|
|
9974
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$CancelEventParameters'
|
|
9975
|
-
* in 1.115.1 and any later releases.
|
|
9976
|
-
*/
|
|
9977
|
-
type $ContainerCancelEventParameters = sap.ui.mdc.valuehelp.base.Container$CancelEventParameters;
|
|
9978
|
-
|
|
9979
10045
|
type Container$CancelEvent = sap.ui.base.Event<Container$CancelEventParameters>;
|
|
9980
10046
|
|
|
9981
|
-
/**
|
|
9982
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$ClosedEventParameters'
|
|
9983
|
-
* in 1.115.1 and any later releases.
|
|
9984
|
-
*/
|
|
9985
|
-
type $ContainerClosedEventParameters = sap.ui.mdc.valuehelp.base.Container$ClosedEventParameters;
|
|
9986
|
-
|
|
9987
10047
|
type Container$ClosedEvent = sap.ui.base.Event<Container$ClosedEventParameters>;
|
|
9988
10048
|
|
|
9989
|
-
/**
|
|
9990
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$ConfirmEventParameters'
|
|
9991
|
-
* in 1.115.1 and any later releases.
|
|
9992
|
-
*/
|
|
9993
|
-
type $ContainerConfirmEventParameters = sap.ui.mdc.valuehelp.base.Container$ConfirmEventParameters;
|
|
9994
|
-
|
|
9995
10049
|
type Container$ConfirmEvent = sap.ui.base.Event<Container$ConfirmEventParameters>;
|
|
9996
10050
|
|
|
9997
|
-
/**
|
|
9998
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$NavigatedEventParameters'
|
|
9999
|
-
* in 1.115.1 and any later releases.
|
|
10000
|
-
*/
|
|
10001
|
-
type $ContainerNavigatedEventParameters = sap.ui.mdc.valuehelp.base.Container$NavigatedEventParameters;
|
|
10002
|
-
|
|
10003
10051
|
type Container$NavigatedEvent = sap.ui.base.Event<Container$NavigatedEventParameters>;
|
|
10004
10052
|
|
|
10005
|
-
/**
|
|
10006
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$OpenedEventParameters'
|
|
10007
|
-
* in 1.115.1 and any later releases.
|
|
10008
|
-
*/
|
|
10009
|
-
type $ContainerOpenedEventParameters = sap.ui.mdc.valuehelp.base.Container$OpenedEventParameters;
|
|
10010
|
-
|
|
10011
10053
|
type Container$OpenedEvent = sap.ui.base.Event<Container$OpenedEventParameters>;
|
|
10012
10054
|
|
|
10013
|
-
/**
|
|
10014
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$RequestDelegateContentEventParameters'
|
|
10015
|
-
* in 1.115.1 and any later releases.
|
|
10016
|
-
*/
|
|
10017
|
-
type $ContainerRequestDelegateContentEventParameters = sap.ui.mdc.valuehelp.base.Container$RequestDelegateContentEventParameters;
|
|
10018
|
-
|
|
10019
10055
|
type Container$RequestDelegateContentEvent = sap.ui.base.Event<Container$RequestDelegateContentEventParameters>;
|
|
10020
10056
|
|
|
10021
|
-
/**
|
|
10022
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$RequestSwitchToDialogEventParameters'
|
|
10023
|
-
* in 1.115.1 and any later releases.
|
|
10024
|
-
*/
|
|
10025
|
-
type $ContainerRequestSwitchToDialogEventParameters = sap.ui.mdc.valuehelp.base.Container$RequestSwitchToDialogEventParameters;
|
|
10026
|
-
|
|
10027
10057
|
type Container$RequestSwitchToDialogEvent = sap.ui.base.Event<Container$RequestSwitchToDialogEventParameters>;
|
|
10028
10058
|
|
|
10029
|
-
/**
|
|
10030
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$SelectEventParameters'
|
|
10031
|
-
* in 1.115.1 and any later releases.
|
|
10032
|
-
*/
|
|
10033
|
-
type $ContainerSelectEventParameters = sap.ui.mdc.valuehelp.base.Container$SelectEventParameters;
|
|
10034
|
-
|
|
10035
10059
|
type Container$SelectEvent = sap.ui.base.Event<Container$SelectEventParameters>;
|
|
10036
10060
|
|
|
10037
|
-
/**
|
|
10038
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$CancelEventParameters'
|
|
10039
|
-
* in 1.115.1 and any later releases.
|
|
10040
|
-
*/
|
|
10041
|
-
type $ContentCancelEventParameters = sap.ui.mdc.valuehelp.base.Content$CancelEventParameters;
|
|
10042
|
-
|
|
10043
10061
|
type Content$CancelEvent = sap.ui.base.Event<Content$CancelEventParameters>;
|
|
10044
10062
|
|
|
10045
|
-
/**
|
|
10046
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$ConfirmEventParameters'
|
|
10047
|
-
* in 1.115.1 and any later releases.
|
|
10048
|
-
*/
|
|
10049
|
-
type $ContentConfirmEventParameters = sap.ui.mdc.valuehelp.base.Content$ConfirmEventParameters;
|
|
10050
|
-
|
|
10051
10063
|
type Content$ConfirmEvent = sap.ui.base.Event<Content$ConfirmEventParameters>;
|
|
10052
10064
|
|
|
10053
|
-
/**
|
|
10054
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$NavigatedEventParameters'
|
|
10055
|
-
* in 1.115.1 and any later releases.
|
|
10056
|
-
*/
|
|
10057
|
-
type $ContentNavigatedEventParameters = sap.ui.mdc.valuehelp.base.Content$NavigatedEventParameters;
|
|
10058
|
-
|
|
10059
10065
|
type Content$NavigatedEvent = sap.ui.base.Event<Content$NavigatedEventParameters>;
|
|
10060
10066
|
|
|
10061
|
-
/**
|
|
10062
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$RequestSwitchToDialogEventParameters'
|
|
10063
|
-
* in 1.115.1 and any later releases.
|
|
10064
|
-
*/
|
|
10065
|
-
type $ContentRequestSwitchToDialogEventParameters = sap.ui.mdc.valuehelp.base.Content$RequestSwitchToDialogEventParameters;
|
|
10066
|
-
|
|
10067
10067
|
type Content$RequestSwitchToDialogEvent = sap.ui.base.Event<Content$RequestSwitchToDialogEventParameters>;
|
|
10068
10068
|
|
|
10069
|
-
/**
|
|
10070
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$SelectEventParameters'
|
|
10071
|
-
* in 1.115.1 and any later releases.
|
|
10072
|
-
*/
|
|
10073
|
-
type $ContentSelectEventParameters = sap.ui.mdc.valuehelp.base.Content$SelectEventParameters;
|
|
10074
|
-
|
|
10075
10069
|
type Content$SelectEvent = sap.ui.base.Event<Content$SelectEventParameters>;
|
|
10076
10070
|
}
|
|
10077
10071
|
/**
|
|
10078
10072
|
* @since 1.95.0
|
|
10079
10073
|
*
|
|
10080
|
-
* Content-modules
|
|
10074
|
+
* Content-modules that is used in {@link sap.ui.mdc.valueHelp.Popover Popover} or {@link sap.ui.mdc.valueHelp.Dialog Dialog}
|
|
10081
10075
|
*
|
|
10082
|
-
* These modules
|
|
10076
|
+
* These modules must not be used stand-alone.
|
|
10083
10077
|
*/
|
|
10084
10078
|
namespace content {
|
|
10085
10079
|
interface $ConditionsSettings
|
|
@@ -10134,7 +10128,7 @@ declare namespace sap {
|
|
|
10134
10128
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
10135
10129
|
*
|
|
10136
10130
|
* If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
|
|
10137
|
-
* small lists all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10131
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10138
10132
|
* case this property must be set to `false`.
|
|
10139
10133
|
*
|
|
10140
10134
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -10145,13 +10139,13 @@ declare namespace sap {
|
|
|
10145
10139
|
| `{${string}}`;
|
|
10146
10140
|
|
|
10147
10141
|
/**
|
|
10148
|
-
* Items of the
|
|
10142
|
+
* Items of the value help.
|
|
10149
10143
|
*
|
|
10150
10144
|
* The `key` of the items is not shown in the list, but is used as a value of the connected field.
|
|
10151
10145
|
*
|
|
10152
10146
|
* If the `additionalText` for all the items is not used, the column will not be displayed.
|
|
10153
10147
|
*
|
|
10154
|
-
* **Note:**
|
|
10148
|
+
* **Note:** Icons are currently not supported.
|
|
10155
10149
|
*/
|
|
10156
10150
|
items?:
|
|
10157
10151
|
| sap.ui.mdc.valuehelp.content.FixedListItem[]
|
|
@@ -10202,16 +10196,16 @@ declare namespace sap {
|
|
|
10202
10196
|
interface $MTableSettings
|
|
10203
10197
|
extends sap.ui.mdc.valuehelp.base.$FilterableListContentSettings {
|
|
10204
10198
|
/**
|
|
10205
|
-
* Table
|
|
10199
|
+
* Table that is used in the value help.
|
|
10206
10200
|
*
|
|
10207
10201
|
* **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
|
|
10208
|
-
* automatically for every case. (
|
|
10209
|
-
* controls only single selection from table might be wanted.)
|
|
10202
|
+
* automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
|
|
10203
|
+
* controls, only single selection from the table might be wanted.)
|
|
10210
10204
|
*/
|
|
10211
10205
|
table?: sap.m.Table;
|
|
10212
10206
|
|
|
10213
10207
|
/**
|
|
10214
|
-
* This event is fired
|
|
10208
|
+
* This event is fired when the content of the table is updated.
|
|
10215
10209
|
*/
|
|
10216
10210
|
contentUpdated?: (oEvent: sap.ui.base.Event) => void;
|
|
10217
10211
|
}
|
|
@@ -10352,7 +10346,7 @@ declare namespace sap {
|
|
|
10352
10346
|
/**
|
|
10353
10347
|
* @since 1.95.0
|
|
10354
10348
|
*
|
|
10355
|
-
* Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with
|
|
10349
|
+
* Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with fixed
|
|
10356
10350
|
* values.
|
|
10357
10351
|
*/
|
|
10358
10352
|
class FixedList extends sap.ui.mdc.valuehelp.base.ListContent {
|
|
@@ -10442,7 +10436,7 @@ declare namespace sap {
|
|
|
10442
10436
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
10443
10437
|
*
|
|
10444
10438
|
* If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
|
|
10445
|
-
* small lists all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10439
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10446
10440
|
* case this property must be set to `false`.
|
|
10447
10441
|
*
|
|
10448
10442
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -10465,13 +10459,13 @@ declare namespace sap {
|
|
|
10465
10459
|
/**
|
|
10466
10460
|
* Gets content of aggregation {@link #getItems items}.
|
|
10467
10461
|
*
|
|
10468
|
-
* Items of the
|
|
10462
|
+
* Items of the value help.
|
|
10469
10463
|
*
|
|
10470
10464
|
* The `key` of the items is not shown in the list, but is used as a value of the connected field.
|
|
10471
10465
|
*
|
|
10472
10466
|
* If the `additionalText` for all the items is not used, the column will not be displayed.
|
|
10473
10467
|
*
|
|
10474
|
-
* **Note:**
|
|
10468
|
+
* **Note:** Icons are currently not supported.
|
|
10475
10469
|
*/
|
|
10476
10470
|
getItems(): sap.ui.mdc.valuehelp.content.FixedListItem[];
|
|
10477
10471
|
/**
|
|
@@ -10528,7 +10522,7 @@ declare namespace sap {
|
|
|
10528
10522
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
10529
10523
|
*
|
|
10530
10524
|
* If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
|
|
10531
|
-
* small lists all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10525
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
10532
10526
|
* case this property must be set to `false`.
|
|
10533
10527
|
*
|
|
10534
10528
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -10886,7 +10880,7 @@ declare namespace sap {
|
|
|
10886
10880
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
10887
10881
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
|
|
10888
10882
|
*
|
|
10889
|
-
* This event is fired
|
|
10883
|
+
* This event is fired when the content of the table is updated.
|
|
10890
10884
|
*
|
|
10891
10885
|
* @returns Reference to `this` in order to allow method chaining
|
|
10892
10886
|
*/
|
|
@@ -10913,7 +10907,7 @@ declare namespace sap {
|
|
|
10913
10907
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
10914
10908
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
|
|
10915
10909
|
*
|
|
10916
|
-
* This event is fired
|
|
10910
|
+
* This event is fired when the content of the table is updated.
|
|
10917
10911
|
*
|
|
10918
10912
|
* @returns Reference to `this` in order to allow method chaining
|
|
10919
10913
|
*/
|
|
@@ -10968,11 +10962,11 @@ declare namespace sap {
|
|
|
10968
10962
|
/**
|
|
10969
10963
|
* Gets content of aggregation {@link #getTable table}.
|
|
10970
10964
|
*
|
|
10971
|
-
* Table
|
|
10965
|
+
* Table that is used in the value help.
|
|
10972
10966
|
*
|
|
10973
10967
|
* **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
|
|
10974
|
-
* automatically for every case. (
|
|
10975
|
-
* controls only single selection from table might be wanted.)
|
|
10968
|
+
* automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
|
|
10969
|
+
* controls, only single selection from the table might be wanted.)
|
|
10976
10970
|
*/
|
|
10977
10971
|
getTable(): sap.m.Table;
|
|
10978
10972
|
/**
|
|
@@ -10989,11 +10983,11 @@ declare namespace sap {
|
|
|
10989
10983
|
}
|
|
10990
10984
|
|
|
10991
10985
|
/**
|
|
10992
|
-
* Object to label
|
|
10986
|
+
* Object to label groups in the value help dialog.
|
|
10993
10987
|
*/
|
|
10994
10988
|
type GroupLabel = {
|
|
10995
10989
|
/**
|
|
10996
|
-
* Label with counter. The placeholder for counter needs to defined
|
|
10990
|
+
* Label with counter. The placeholder for counter needs to be defined with `{0}`
|
|
10997
10991
|
*/
|
|
10998
10992
|
label: string;
|
|
10999
10993
|
/**
|
|
@@ -11002,12 +10996,6 @@ declare namespace sap {
|
|
|
11002
10996
|
nnLabel: string;
|
|
11003
10997
|
};
|
|
11004
10998
|
|
|
11005
|
-
/**
|
|
11006
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MTable$ContentUpdatedEventParameters'
|
|
11007
|
-
* in 1.115.1 and any later releases.
|
|
11008
|
-
*/
|
|
11009
|
-
type $MTableContentUpdatedEventParameters = sap.ui.mdc.valuehelp.content.MTable$ContentUpdatedEventParameters;
|
|
11010
|
-
|
|
11011
10999
|
type MTable$ContentUpdatedEvent = sap.ui.base.Event<MTable$ContentUpdatedEventParameters>;
|
|
11012
11000
|
}
|
|
11013
11001
|
|
|
@@ -11043,9 +11031,9 @@ declare namespace sap {
|
|
|
11043
11031
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
11044
11032
|
* content enforces it.
|
|
11045
11033
|
*
|
|
11046
|
-
* **Note:** By default, a
|
|
11047
|
-
* control. This property enables scenarios
|
|
11048
|
-
* or recently entered values)
|
|
11034
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11035
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11036
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11049
11037
|
*/
|
|
11050
11038
|
opensOnClick?:
|
|
11051
11039
|
| boolean
|
|
@@ -11055,11 +11043,11 @@ declare namespace sap {
|
|
|
11055
11043
|
/**
|
|
11056
11044
|
* @since 1.112.0
|
|
11057
11045
|
*
|
|
11058
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
11046
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
11059
11047
|
*
|
|
11060
|
-
* **Note:** By default, a
|
|
11061
|
-
* control. This property enables scenarios
|
|
11062
|
-
* or recently entered values)
|
|
11048
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11049
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11050
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11063
11051
|
*/
|
|
11064
11052
|
opensOnFocus?:
|
|
11065
11053
|
| boolean
|
|
@@ -11269,9 +11257,9 @@ declare namespace sap {
|
|
|
11269
11257
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
11270
11258
|
* content enforces it.
|
|
11271
11259
|
*
|
|
11272
|
-
* **Note:** By default, a
|
|
11273
|
-
* control. This property enables scenarios
|
|
11274
|
-
* or recently entered values)
|
|
11260
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11261
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11262
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11275
11263
|
*
|
|
11276
11264
|
* Default value is `false`.
|
|
11277
11265
|
*
|
|
@@ -11283,11 +11271,11 @@ declare namespace sap {
|
|
|
11283
11271
|
*
|
|
11284
11272
|
* Gets current value of property {@link #getOpensOnFocus opensOnFocus}.
|
|
11285
11273
|
*
|
|
11286
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
11274
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
11287
11275
|
*
|
|
11288
|
-
* **Note:** By default, a
|
|
11289
|
-
* control. This property enables scenarios
|
|
11290
|
-
* or recently entered values)
|
|
11276
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11277
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11278
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11291
11279
|
*
|
|
11292
11280
|
* Default value is `false`.
|
|
11293
11281
|
*
|
|
@@ -11302,9 +11290,9 @@ declare namespace sap {
|
|
|
11302
11290
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
11303
11291
|
* content enforces it.
|
|
11304
11292
|
*
|
|
11305
|
-
* **Note:** By default, a
|
|
11306
|
-
* control. This property enables scenarios
|
|
11307
|
-
* or recently entered values)
|
|
11293
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11294
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11295
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11308
11296
|
*
|
|
11309
11297
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11310
11298
|
*
|
|
@@ -11323,11 +11311,11 @@ declare namespace sap {
|
|
|
11323
11311
|
*
|
|
11324
11312
|
* Sets a new value for property {@link #getOpensOnFocus opensOnFocus}.
|
|
11325
11313
|
*
|
|
11326
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
11314
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
11327
11315
|
*
|
|
11328
|
-
* **Note:** By default, a
|
|
11329
|
-
* control. This property enables scenarios
|
|
11330
|
-
* or recently entered values)
|
|
11316
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
11317
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
11318
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
11331
11319
|
*
|
|
11332
11320
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11333
11321
|
*
|
|
@@ -11500,7 +11488,16 @@ declare namespace sap {
|
|
|
11500
11488
|
*
|
|
11501
11489
|
* Defines the alignment of the `ActionToolbarAction` action control.
|
|
11502
11490
|
*/
|
|
11503
|
-
enum ActionToolbarActionAlignment {
|
|
11491
|
+
enum ActionToolbarActionAlignment {
|
|
11492
|
+
/**
|
|
11493
|
+
* Align to the beginning
|
|
11494
|
+
*/
|
|
11495
|
+
Begin = "Begin",
|
|
11496
|
+
/**
|
|
11497
|
+
* Align to the end
|
|
11498
|
+
*/
|
|
11499
|
+
End = "End",
|
|
11500
|
+
}
|
|
11504
11501
|
/**
|
|
11505
11502
|
* @since 1.115
|
|
11506
11503
|
*
|
|
@@ -11771,12 +11768,6 @@ declare namespace sap {
|
|
|
11771
11768
|
*/
|
|
11772
11769
|
Static = "static",
|
|
11773
11770
|
}
|
|
11774
|
-
/**
|
|
11775
|
-
* @since 1.115
|
|
11776
|
-
*
|
|
11777
|
-
* Enumeration of the preferred persistence mode for personalization changes.
|
|
11778
|
-
*/
|
|
11779
|
-
enum PersistenceMode {}
|
|
11780
11771
|
/**
|
|
11781
11772
|
* @since 1.115
|
|
11782
11773
|
*
|
|
@@ -11893,7 +11884,20 @@ declare namespace sap {
|
|
|
11893
11884
|
*
|
|
11894
11885
|
* Enumeration of the propagation reason in the condition propagation callback of the {@link sap.ui.mdc.ValueHelp ValueHelp}
|
|
11895
11886
|
*/
|
|
11896
|
-
enum ValueHelpPropagationReason {
|
|
11887
|
+
enum ValueHelpPropagationReason {
|
|
11888
|
+
/**
|
|
11889
|
+
* Triggered by connected control after processing valuehelp output
|
|
11890
|
+
*/
|
|
11891
|
+
ControlChange = "ControlChange",
|
|
11892
|
+
/**
|
|
11893
|
+
* Triggered by `ValueHelp` itself on `getItemForValue`
|
|
11894
|
+
*/
|
|
11895
|
+
Info = "Info",
|
|
11896
|
+
/**
|
|
11897
|
+
* Triggered by `ValueHelp` itself on selection
|
|
11898
|
+
*/
|
|
11899
|
+
Select = "Select",
|
|
11900
|
+
}
|
|
11897
11901
|
}
|
|
11898
11902
|
|
|
11899
11903
|
namespace link {
|
|
@@ -12819,9 +12823,7 @@ declare namespace sap {
|
|
|
12819
12823
|
* `sap.m.Table`: The press event is fired when a row with a row action item is pressed. The `sap.ui.mdc.Table`'s
|
|
12820
12824
|
* `rowPress` event is fired as well, when pressing a row with a row action item.
|
|
12821
12825
|
*/
|
|
12822
|
-
press?: (
|
|
12823
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.table.RowActionItem$PressEventParameters>
|
|
12824
|
-
) => void;
|
|
12826
|
+
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
12825
12827
|
}
|
|
12826
12828
|
|
|
12827
12829
|
interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -14244,9 +14246,9 @@ declare namespace sap {
|
|
|
14244
14246
|
*/
|
|
14245
14247
|
class RowSettings extends sap.ui.core.Element {
|
|
14246
14248
|
/**
|
|
14247
|
-
* Constructor for new RowSettings
|
|
14249
|
+
* Constructor for new `RowSettings`.
|
|
14248
14250
|
*
|
|
14249
|
-
*
|
|
14251
|
+
* **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
|
|
14250
14252
|
* for other binding types.
|
|
14251
14253
|
*
|
|
14252
14254
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -14260,9 +14262,9 @@ declare namespace sap {
|
|
|
14260
14262
|
mSettings?: sap.ui.mdc.table.$RowSettingsSettings
|
|
14261
14263
|
);
|
|
14262
14264
|
/**
|
|
14263
|
-
* Constructor for new RowSettings
|
|
14265
|
+
* Constructor for new `RowSettings`.
|
|
14264
14266
|
*
|
|
14265
|
-
*
|
|
14267
|
+
* **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
|
|
14266
14268
|
* for other binding types.
|
|
14267
14269
|
*
|
|
14268
14270
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -14749,12 +14751,6 @@ declare namespace sap {
|
|
|
14749
14751
|
propertyInfos?: string[];
|
|
14750
14752
|
};
|
|
14751
14753
|
|
|
14752
|
-
/**
|
|
14753
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowActionItem$PressEventParameters'
|
|
14754
|
-
* in 1.115.1 and any later releases.
|
|
14755
|
-
*/
|
|
14756
|
-
type $RowActionItemPressEventParameters = sap.ui.mdc.table.RowActionItem$PressEventParameters;
|
|
14757
|
-
|
|
14758
14754
|
type RowActionItem$PressEvent = sap.ui.base.Event<RowActionItem$PressEventParameters>;
|
|
14759
14755
|
}
|
|
14760
14756
|
|
|
@@ -14819,6 +14815,77 @@ declare namespace sap {
|
|
|
14819
14815
|
caseSensitive?: boolean;
|
|
14820
14816
|
};
|
|
14821
14817
|
}
|
|
14818
|
+
/**
|
|
14819
|
+
* @since 1.70
|
|
14820
|
+
*
|
|
14821
|
+
* Interface for controls or entities which can serve as filters in the `sap.ui.mdc.Table` & `sap.ui.mdc.Chart`.
|
|
14822
|
+
*
|
|
14823
|
+
* The following methods need to be implemented:
|
|
14824
|
+
*
|
|
14825
|
+
*
|
|
14826
|
+
* - `getConditions` - Part of the {@link sap.ui.mdc.IFilterSource} interface.
|
|
14827
|
+
* - `validate` - The `validate` method should return a promise which resolves after the IFilter interface
|
|
14828
|
+
* has handled its inner validation. The `getConditions` method will be called subsequently by the filtered
|
|
14829
|
+
* control.
|
|
14830
|
+
* - `getSearch` - **Note:** The `getSearch` method can optionally be implemented and should return a
|
|
14831
|
+
* string for approximate string matching implemented in the backend.
|
|
14832
|
+
*
|
|
14833
|
+
* The following events need to be implemented:
|
|
14834
|
+
*
|
|
14835
|
+
*
|
|
14836
|
+
* - `search` - This event should be fired once a filtering should be executed on the IFilter using control.
|
|
14837
|
+
*
|
|
14838
|
+
* - `filtersChanged` - **Note:** The `filtersChanged` event can optionally be implemented and should
|
|
14839
|
+
* be fired whenever a filter value has changed. This event will be used to display an overlay on the IFilter
|
|
14840
|
+
* consuming control.
|
|
14841
|
+
*/
|
|
14842
|
+
interface IFilter extends sap.ui.mdc.IFilterSource {
|
|
14843
|
+
__implements__sap_ui_mdc_IFilter: boolean;
|
|
14844
|
+
|
|
14845
|
+
/**
|
|
14846
|
+
* @since 1.80
|
|
14847
|
+
*
|
|
14848
|
+
* **Note:** The `getSearch` method can optionally be implemented and should return a string for approximate
|
|
14849
|
+
* string matching implemented in the backend.
|
|
14850
|
+
*
|
|
14851
|
+
* @returns The search string to be used for an approximate string matching
|
|
14852
|
+
*/
|
|
14853
|
+
getSearch(): string;
|
|
14854
|
+
/**
|
|
14855
|
+
* @since 1.80
|
|
14856
|
+
*
|
|
14857
|
+
* The `validate` method should return a promise which resolves after the IFilter interface has handled
|
|
14858
|
+
* its inner validation. The `getConditions` method will be called subsequently by the filtered control.
|
|
14859
|
+
*
|
|
14860
|
+
* @returns A promise resolving once the necessary result validation has been handled
|
|
14861
|
+
*/
|
|
14862
|
+
validate(
|
|
14863
|
+
/**
|
|
14864
|
+
* Determines whether the search should be suppressed. The default is null.
|
|
14865
|
+
*/
|
|
14866
|
+
bSuppressSearch: boolean
|
|
14867
|
+
): Promise<any>;
|
|
14868
|
+
}
|
|
14869
|
+
|
|
14870
|
+
/**
|
|
14871
|
+
* @since 1.80
|
|
14872
|
+
*
|
|
14873
|
+
* Interface for controls or entities which are able to return a set of present conditions. The controls
|
|
14874
|
+
* or entities have to implement the following APIs: `getConditions`.
|
|
14875
|
+
*/
|
|
14876
|
+
interface IFilterSource {
|
|
14877
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
14878
|
+
}
|
|
14879
|
+
|
|
14880
|
+
/**
|
|
14881
|
+
* @since 1.75
|
|
14882
|
+
*
|
|
14883
|
+
* Interface for controls or entities which support the appliance of an externalized state representation.
|
|
14884
|
+
* The controls or entities have to implement the following APIs: `getCurrentState` & `initialized` methods.
|
|
14885
|
+
*/
|
|
14886
|
+
interface IxState {
|
|
14887
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
14888
|
+
}
|
|
14822
14889
|
|
|
14823
14890
|
interface $ActionToolbarSettings extends sap.m.$OverflowToolbarSettings {
|
|
14824
14891
|
/**
|
|
@@ -15095,13 +15162,13 @@ declare namespace sap {
|
|
|
15095
15162
|
* Control or object that enables the chart to do filtering, such as {@link sap.ui.mdc.FilterBar}. Also
|
|
15096
15163
|
* see {@link sap.ui.mdc.IFilter}.
|
|
15097
15164
|
*/
|
|
15098
|
-
filter?:
|
|
15165
|
+
filter?: sap.ui.mdc.IFilter | string;
|
|
15099
15166
|
|
|
15100
15167
|
/**
|
|
15101
15168
|
* This event is fired when a `SelectionDetailsAction` is pressed.
|
|
15102
15169
|
*/
|
|
15103
15170
|
selectionDetailsActionPressed?: (
|
|
15104
|
-
oEvent:
|
|
15171
|
+
oEvent: Chart$SelectionDetailsActionPressedEvent
|
|
15105
15172
|
) => void;
|
|
15106
15173
|
}
|
|
15107
15174
|
|
|
@@ -15162,9 +15229,7 @@ declare namespace sap {
|
|
|
15162
15229
|
*
|
|
15163
15230
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
15164
15231
|
*/
|
|
15165
|
-
change?: (
|
|
15166
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.Field$ChangeEventParameters>
|
|
15167
|
-
) => void;
|
|
15232
|
+
change?: (oEvent: Field$ChangeEvent) => void;
|
|
15168
15233
|
}
|
|
15169
15234
|
|
|
15170
15235
|
interface $FilterBarSettings
|
|
@@ -15206,7 +15271,7 @@ declare namespace sap {
|
|
|
15206
15271
|
*
|
|
15207
15272
|
* Supported operator names for conditions.
|
|
15208
15273
|
*
|
|
15209
|
-
* If empty, default operators depending on used data type are
|
|
15274
|
+
* If empty, default operators depending on used data type are taken.
|
|
15210
15275
|
*/
|
|
15211
15276
|
operators?:
|
|
15212
15277
|
| string[]
|
|
@@ -15238,9 +15303,7 @@ declare namespace sap {
|
|
|
15238
15303
|
*
|
|
15239
15304
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
15240
15305
|
*/
|
|
15241
|
-
change?: (
|
|
15242
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.FilterField$ChangeEventParameters>
|
|
15243
|
-
) => void;
|
|
15306
|
+
change?: (oEvent: FilterField$ChangeEvent) => void;
|
|
15244
15307
|
}
|
|
15245
15308
|
|
|
15246
15309
|
interface $LinkSettings extends sap.ui.mdc.field.$FieldInfoBaseSettings {
|
|
@@ -15304,9 +15367,7 @@ declare namespace sap {
|
|
|
15304
15367
|
*
|
|
15305
15368
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
15306
15369
|
*/
|
|
15307
|
-
change?: (
|
|
15308
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.MultiValueField$ChangeEventParameters>
|
|
15309
|
-
) => void;
|
|
15370
|
+
change?: (oEvent: MultiValueField$ChangeEvent) => void;
|
|
15310
15371
|
}
|
|
15311
15372
|
|
|
15312
15373
|
interface $TableSettings extends sap.ui.mdc.$ControlSettings {
|
|
@@ -15363,6 +15424,17 @@ declare namespace sap {
|
|
|
15363
15424
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
15364
15425
|
| `{${string}}`;
|
|
15365
15426
|
|
|
15427
|
+
/**
|
|
15428
|
+
* @since 1.116
|
|
15429
|
+
* @experimental - Internal use only
|
|
15430
|
+
*
|
|
15431
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
15432
|
+
*/
|
|
15433
|
+
headerStyle?:
|
|
15434
|
+
| sap.ui.core.TitleLevel
|
|
15435
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
15436
|
+
| `{${string}}`;
|
|
15437
|
+
|
|
15366
15438
|
/**
|
|
15367
15439
|
* Determines whether to bind the table automatically after the initial creation or re-creation of the table.
|
|
15368
15440
|
*/
|
|
@@ -15700,21 +15772,17 @@ declare namespace sap {
|
|
|
15700
15772
|
*
|
|
15701
15773
|
* Automatic filter generation only works in combination with a `sap.ui.mdc.FilterBar`.
|
|
15702
15774
|
*/
|
|
15703
|
-
filter?:
|
|
15775
|
+
filter?: sap.ui.mdc.IFilter | string;
|
|
15704
15776
|
|
|
15705
15777
|
/**
|
|
15706
15778
|
* This event is fired when a row in the table is pressed.
|
|
15707
15779
|
*/
|
|
15708
|
-
rowPress?: (
|
|
15709
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.Table$RowPressEventParameters>
|
|
15710
|
-
) => void;
|
|
15780
|
+
rowPress?: (oEvent: Table$RowPressEvent) => void;
|
|
15711
15781
|
|
|
15712
15782
|
/**
|
|
15713
15783
|
* This event is fired when the selection in the table is changed.
|
|
15714
15784
|
*/
|
|
15715
|
-
selectionChange?: (
|
|
15716
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.Table$SelectionChangeEventParameters>
|
|
15717
|
-
) => void;
|
|
15785
|
+
selectionChange?: (oEvent: Table$SelectionChangeEvent) => void;
|
|
15718
15786
|
|
|
15719
15787
|
/**
|
|
15720
15788
|
* @since 1.75
|
|
@@ -15723,16 +15791,12 @@ declare namespace sap {
|
|
|
15723
15791
|
*
|
|
15724
15792
|
* For more information about the export settings, see {@link sap.ui.export.Spreadsheet} or {@link https://ui5.sap.com/#/topic/7e12e6b9154a4607be9d6072c72d609c Spreadsheet Export Configuration}.
|
|
15725
15793
|
*/
|
|
15726
|
-
beforeExport?: (
|
|
15727
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.Table$BeforeExportEventParameters>
|
|
15728
|
-
) => void;
|
|
15794
|
+
beforeExport?: (oEvent: Table$BeforeExportEvent) => void;
|
|
15729
15795
|
|
|
15730
15796
|
/**
|
|
15731
15797
|
* This event is fired when the user pastes content from the clipboard to the table.
|
|
15732
15798
|
*/
|
|
15733
|
-
paste?: (
|
|
15734
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.Table$PasteEventParameters>
|
|
15735
|
-
) => void;
|
|
15799
|
+
paste?: (oEvent: Table$PasteEvent) => void;
|
|
15736
15800
|
}
|
|
15737
15801
|
|
|
15738
15802
|
interface $ValueHelpSettings extends sap.ui.mdc.$ElementSettings {
|
|
@@ -15802,9 +15866,7 @@ declare namespace sap {
|
|
|
15802
15866
|
* **Note:** This event must only be handled by the control the `ValueHelp` element belongs to, not by the
|
|
15803
15867
|
* application.
|
|
15804
15868
|
*/
|
|
15805
|
-
select?: (
|
|
15806
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.ValueHelp$SelectEventParameters>
|
|
15807
|
-
) => void;
|
|
15869
|
+
select?: (oEvent: ValueHelp$SelectEvent) => void;
|
|
15808
15870
|
|
|
15809
15871
|
/**
|
|
15810
15872
|
* This event is fired when the `ValueHelp` element is disconnected from a control.
|
|
@@ -15822,23 +15884,17 @@ declare namespace sap {
|
|
|
15822
15884
|
/**
|
|
15823
15885
|
* This event is fired as the value help opening is triggered.
|
|
15824
15886
|
*/
|
|
15825
|
-
open?: (
|
|
15826
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.ValueHelp$OpenEventParameters>
|
|
15827
|
-
) => void;
|
|
15887
|
+
open?: (oEvent: ValueHelp$OpenEvent) => void;
|
|
15828
15888
|
|
|
15829
15889
|
/**
|
|
15830
15890
|
* This event is fired as the value help is fully open.
|
|
15831
15891
|
*/
|
|
15832
|
-
opened?: (
|
|
15833
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.ValueHelp$OpenedEventParameters>
|
|
15834
|
-
) => void;
|
|
15892
|
+
opened?: (oEvent: ValueHelp$OpenedEvent) => void;
|
|
15835
15893
|
|
|
15836
15894
|
/**
|
|
15837
15895
|
* This event is fired after the user navigated, using the arrow keys, in the value help.
|
|
15838
15896
|
*/
|
|
15839
|
-
navigated?: (
|
|
15840
|
-
oEvent: sap.ui.base.Event<sap.ui.mdc.ValueHelp$NavigatedEventParameters>
|
|
15841
|
-
) => void;
|
|
15897
|
+
navigated?: (oEvent: ValueHelp$NavigatedEvent) => void;
|
|
15842
15898
|
|
|
15843
15899
|
/**
|
|
15844
15900
|
* This event is fired if the user wants to switch from typeahead to value help.
|
|
@@ -15910,8 +15966,8 @@ declare namespace sap {
|
|
|
15910
15966
|
|
|
15911
15967
|
/**
|
|
15912
15968
|
* Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
|
|
15913
|
-
* event is synchronous, the
|
|
15914
|
-
*
|
|
15969
|
+
* event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
|
|
15970
|
+
* after the value has been updated.
|
|
15915
15971
|
*
|
|
15916
15972
|
* The `FilterField` should be set to busy during the parsing to prevent user input. As there might be a
|
|
15917
15973
|
* whole group of fields that needs to be busy, this cannot be done automatically.
|
|
@@ -15935,7 +15991,7 @@ declare namespace sap {
|
|
|
15935
15991
|
|
|
15936
15992
|
/**
|
|
15937
15993
|
* Returns a `Promise` for the change. The `Promise` returns the items when it is resolved. If the `change`
|
|
15938
|
-
* event is synchronous, the
|
|
15994
|
+
* event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
|
|
15939
15995
|
* after the items have been updated.
|
|
15940
15996
|
*
|
|
15941
15997
|
* The `MultiValueField` control should be set to busy during the parsing to prevent user input. As there
|
|
@@ -16438,7 +16494,11 @@ declare namespace sap {
|
|
|
16438
16494
|
* The `Chart` control creates a chart based on metadata and the configuration specified.
|
|
16439
16495
|
* **Note:** The inner chart needs to be assigned `ChartDelegate`.
|
|
16440
16496
|
*/
|
|
16441
|
-
class Chart
|
|
16497
|
+
class Chart
|
|
16498
|
+
extends sap.ui.mdc.Control
|
|
16499
|
+
implements sap.ui.mdc.IFilterSource, sap.ui.mdc.IxState {
|
|
16500
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
16501
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
16442
16502
|
/**
|
|
16443
16503
|
* Constructor for a new Chart.
|
|
16444
16504
|
*
|
|
@@ -17060,7 +17120,7 @@ declare namespace sap {
|
|
|
17060
17120
|
* ID of an element which becomes the new target of this filter association; alternatively, an element instance
|
|
17061
17121
|
* may be given
|
|
17062
17122
|
*/
|
|
17063
|
-
oFilter: sap.ui.core.ID |
|
|
17123
|
+
oFilter: sap.ui.core.ID | sap.ui.mdc.IFilter
|
|
17064
17124
|
): this;
|
|
17065
17125
|
/**
|
|
17066
17126
|
* @since 1.99
|
|
@@ -18153,7 +18213,7 @@ declare namespace sap {
|
|
|
18153
18213
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18154
18214
|
/**
|
|
18155
18215
|
* Returns the external conditions of the inner condition model. **Note:** This API returns only attributes
|
|
18156
|
-
* related to the {@link sap.ui.mdc.FilterBar#p13nMode} property configuration.
|
|
18216
|
+
* related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
|
|
18157
18217
|
*
|
|
18158
18218
|
* @returns Object containing the current status of the `FilterBar`
|
|
18159
18219
|
*/
|
|
@@ -18264,19 +18324,19 @@ declare namespace sap {
|
|
|
18264
18324
|
|
|
18265
18325
|
/**
|
|
18266
18326
|
* This method is called during the appliance of the add condition change. The intention is to update the
|
|
18267
|
-
* {@link sap.ui.mdc.
|
|
18327
|
+
* {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
|
|
18268
18328
|
*
|
|
18269
18329
|
* @returns `Promise` that is resolved once the propertyInfo property has been updated
|
|
18270
18330
|
*/
|
|
18271
18331
|
static addCondition(
|
|
18272
18332
|
/**
|
|
18273
|
-
*
|
|
18333
|
+
* Instance of the filter bar
|
|
18274
18334
|
*/
|
|
18275
|
-
|
|
18335
|
+
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18276
18336
|
/**
|
|
18277
|
-
* The
|
|
18337
|
+
* The name of a property
|
|
18278
18338
|
*/
|
|
18279
|
-
|
|
18339
|
+
sPropertyName: string,
|
|
18280
18340
|
/**
|
|
18281
18341
|
* Instance of a property bag from the SAPUI5 flexibility change API
|
|
18282
18342
|
*/
|
|
@@ -18295,13 +18355,13 @@ declare namespace sap {
|
|
|
18295
18355
|
*/
|
|
18296
18356
|
static addItem(
|
|
18297
18357
|
/**
|
|
18298
|
-
*
|
|
18358
|
+
* Instance of the filter bar
|
|
18299
18359
|
*/
|
|
18300
|
-
|
|
18360
|
+
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18301
18361
|
/**
|
|
18302
|
-
*
|
|
18362
|
+
* The name of the property info object/JSON
|
|
18303
18363
|
*/
|
|
18304
|
-
|
|
18364
|
+
sPropertyName: string,
|
|
18305
18365
|
/**
|
|
18306
18366
|
* Instance of property bag from SAPUI5 flexibility change API
|
|
18307
18367
|
*/
|
|
@@ -18314,9 +18374,9 @@ declare namespace sap {
|
|
|
18314
18374
|
*/
|
|
18315
18375
|
static clearFilters(
|
|
18316
18376
|
/**
|
|
18317
|
-
*
|
|
18377
|
+
* Instance of the filter bar
|
|
18318
18378
|
*/
|
|
18319
|
-
|
|
18379
|
+
oFilterBar: sap.ui.mdc.FilterBar
|
|
18320
18380
|
): Promise<any>;
|
|
18321
18381
|
/**
|
|
18322
18382
|
* A validator to evaluate the filter bar state.
|
|
@@ -18325,7 +18385,7 @@ declare namespace sap {
|
|
|
18325
18385
|
*/
|
|
18326
18386
|
static determineValidationState(
|
|
18327
18387
|
/**
|
|
18328
|
-
* Instance of
|
|
18388
|
+
* Instance of the filter bar
|
|
18329
18389
|
*/
|
|
18330
18390
|
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18331
18391
|
/**
|
|
@@ -18345,25 +18405,25 @@ declare namespace sap {
|
|
|
18345
18405
|
*/
|
|
18346
18406
|
static fetchProperties(
|
|
18347
18407
|
/**
|
|
18348
|
-
* Instance of
|
|
18408
|
+
* Instance of the filter bar
|
|
18349
18409
|
*/
|
|
18350
|
-
|
|
18410
|
+
oFilterBar: sap.ui.mdc.FilterBar
|
|
18351
18411
|
): Promise<sap.ui.mdc.filterbar.PropertyInfo[]>;
|
|
18352
18412
|
/**
|
|
18353
|
-
* This method is called during the appliance of the remove condition change. The intention
|
|
18354
|
-
* the {@link sap.ui.mdc.
|
|
18413
|
+
* propertyInfo This method is called during the appliance of the remove condition change. The intention
|
|
18414
|
+
* is to update the {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
|
|
18355
18415
|
*
|
|
18356
18416
|
* @returns `Promise` that is resolved once the propertyInfo property has been updated
|
|
18357
18417
|
*/
|
|
18358
18418
|
static removeCondition(
|
|
18359
18419
|
/**
|
|
18360
|
-
*
|
|
18420
|
+
* Instance of the filter bar
|
|
18361
18421
|
*/
|
|
18362
|
-
|
|
18422
|
+
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18363
18423
|
/**
|
|
18364
|
-
* The
|
|
18424
|
+
* The name of a property
|
|
18365
18425
|
*/
|
|
18366
|
-
|
|
18426
|
+
sPropertyName: string,
|
|
18367
18427
|
/**
|
|
18368
18428
|
* Instance of a property bag from the SAPUI5 flexibility change API
|
|
18369
18429
|
*/
|
|
@@ -18382,13 +18442,13 @@ declare namespace sap {
|
|
|
18382
18442
|
*/
|
|
18383
18443
|
static removeItem(
|
|
18384
18444
|
/**
|
|
18385
|
-
*
|
|
18445
|
+
* Instance of the filter bar
|
|
18386
18446
|
*/
|
|
18387
|
-
|
|
18447
|
+
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18388
18448
|
/**
|
|
18389
|
-
*
|
|
18449
|
+
* The filter field instance that was removed
|
|
18390
18450
|
*/
|
|
18391
|
-
|
|
18451
|
+
oFilterField: sap.ui.mdc.FilterField,
|
|
18392
18452
|
/**
|
|
18393
18453
|
* Instance of property bag from SAPUI5 flexibility
|
|
18394
18454
|
*/
|
|
@@ -18399,7 +18459,7 @@ declare namespace sap {
|
|
|
18399
18459
|
*/
|
|
18400
18460
|
static visualizeValidationState(
|
|
18401
18461
|
/**
|
|
18402
|
-
* Instance of
|
|
18462
|
+
* Instance of the filter bar
|
|
18403
18463
|
*/
|
|
18404
18464
|
oFilterBar: sap.ui.mdc.FilterBar,
|
|
18405
18465
|
/**
|
|
@@ -18422,24 +18482,26 @@ declare namespace sap {
|
|
|
18422
18482
|
* property must be bound to the related conditions in the {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
18423
18483
|
* The type of this data must be defined in the `dataType` property.
|
|
18424
18484
|
*
|
|
18485
|
+
* Based on the data type settings, a default control is rendered by the `FilterField` as follows:
|
|
18486
|
+
*
|
|
18425
18487
|
*
|
|
18426
|
-
* - In display mode
|
|
18427
|
-
* - If `multipleLines` is set
|
|
18428
|
-
* - If multiple values are allowed a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
18429
|
-
* - In edit mode
|
|
18430
|
-
* - If multiple values are allowed a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
18431
|
-
* - If `multipleLines` is set a {@link sap.m.TextArea TextArea} control is rendered.
|
|
18432
|
-
* - If a date type or a date
|
|
18488
|
+
* - In display mode, usually a {@link sap.m.Text Text} control is rendered.
|
|
18489
|
+
* - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
|
|
18490
|
+
* - If multiple values are allowed, a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
18491
|
+
* - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
|
|
18492
|
+
* - If multiple values are allowed, a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
18493
|
+
* - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
|
|
18494
|
+
* - If a date type or a date/time type is used, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
18433
18495
|
* control is rendered.
|
|
18434
18496
|
* - If a date type is used and only single values are allowed, a {@link sap.m.DatePicker DatePicker }
|
|
18435
18497
|
* control is rendered.
|
|
18436
18498
|
* - If a date type is used and only single ranges are allowed, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
18437
18499
|
* control is rendered.
|
|
18438
|
-
* - If a date
|
|
18500
|
+
* - If a date/time type is used and only single values are allowed, a {@link sap.m.DateTimePicker DateTimePicker }
|
|
18439
18501
|
* control is rendered.
|
|
18440
18502
|
* - If a time type is used and only single values are allowed, a {@link sap.m.TimePicker TimePicker }
|
|
18441
18503
|
* control is rendered.
|
|
18442
|
-
* - If used for search a {@link sap.m.SearchField SearchField} control is rendered.
|
|
18504
|
+
* - If used for search, a {@link sap.m.SearchField SearchField} control is rendered.
|
|
18443
18505
|
*/
|
|
18444
18506
|
class FilterField
|
|
18445
18507
|
extends sap.ui.mdc.field.FieldBase
|
|
@@ -18638,7 +18700,7 @@ declare namespace sap {
|
|
|
18638
18700
|
*
|
|
18639
18701
|
* Supported operator names for conditions.
|
|
18640
18702
|
*
|
|
18641
|
-
* If empty, default operators depending on used data type are
|
|
18703
|
+
* If empty, default operators depending on used data type are taken.
|
|
18642
18704
|
*
|
|
18643
18705
|
* Default value is `[]`.
|
|
18644
18706
|
*
|
|
@@ -18710,7 +18772,7 @@ declare namespace sap {
|
|
|
18710
18772
|
*
|
|
18711
18773
|
* Supported operator names for conditions.
|
|
18712
18774
|
*
|
|
18713
|
-
* If empty, default operators depending on used data type are
|
|
18775
|
+
* If empty, default operators depending on used data type are taken.
|
|
18714
18776
|
*
|
|
18715
18777
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18716
18778
|
*
|
|
@@ -18873,6 +18935,8 @@ declare namespace sap {
|
|
|
18873
18935
|
*/
|
|
18874
18936
|
getSourceControl(): sap.ui.core.ID;
|
|
18875
18937
|
/**
|
|
18938
|
+
* Retrieves the `AdditionalContent` objects depending on the given `LinkDelegate`. Caches the returned
|
|
18939
|
+
* objects for further usage.
|
|
18876
18940
|
*
|
|
18877
18941
|
* @returns Resolves an array of type {@link sap.ui.core.Control}
|
|
18878
18942
|
*/
|
|
@@ -18884,6 +18948,7 @@ declare namespace sap {
|
|
|
18884
18948
|
*/
|
|
18885
18949
|
retrieveLinkItems(): Promise<sap.ui.mdc.link.LinkItem[]>;
|
|
18886
18950
|
/**
|
|
18951
|
+
* Determines the `LinkType` object depending on the given `LinkDelegate`.
|
|
18887
18952
|
*
|
|
18888
18953
|
* @returns Returns `undefined` or a {@link sap.ui.mdc.link.LinkType}, once resolved
|
|
18889
18954
|
*/
|
|
@@ -18947,13 +19012,13 @@ declare namespace sap {
|
|
|
18947
19012
|
*
|
|
18948
19013
|
* A `MultiValueField` control can hold multiple values. The values are stored as items. A `MultiValueField`
|
|
18949
19014
|
* control can be used to bind its items to data of a certain data type. Based on the data type settings,
|
|
18950
|
-
* a default control is rendered by the `MultiValueField` control
|
|
19015
|
+
* a default control is rendered by the `MultiValueField` control as follows:
|
|
18951
19016
|
*
|
|
18952
19017
|
*
|
|
18953
|
-
* - In display mode
|
|
18954
|
-
* - If `multipleLines` is set
|
|
18955
|
-
* - In edit mode
|
|
18956
|
-
* - If `multipleLines` is set a {@link sap.m.TextArea TextArea} control is rendered.
|
|
19018
|
+
* - In display mode, usually a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
19019
|
+
* - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
|
|
19020
|
+
* - In edit mode, usually a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
19021
|
+
* - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
|
|
18957
19022
|
*/
|
|
18958
19023
|
class MultiValueField
|
|
18959
19024
|
extends sap.ui.mdc.field.FieldBase
|
|
@@ -19244,7 +19309,11 @@ declare namespace sap {
|
|
|
19244
19309
|
* controls. The metadata needs to be provided via the {@link module:sap/ui/mdc/TableDelegate TableDelegate }
|
|
19245
19310
|
* implementation as {@link sap.ui.mdc.table.PropertyInfo}.
|
|
19246
19311
|
*/
|
|
19247
|
-
class Table
|
|
19312
|
+
class Table
|
|
19313
|
+
extends sap.ui.mdc.Control
|
|
19314
|
+
implements sap.ui.mdc.IFilterSource, sap.ui.mdc.IxState {
|
|
19315
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
19316
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
19248
19317
|
/**
|
|
19249
19318
|
* Constructor for a new `MDCTable`.
|
|
19250
19319
|
*
|
|
@@ -19805,15 +19874,6 @@ declare namespace sap {
|
|
|
19805
19874
|
* removed.
|
|
19806
19875
|
*/
|
|
19807
19876
|
getCreationRow(): /* was: sap.ui.mdc.table.CreationRow */ any;
|
|
19808
|
-
/**
|
|
19809
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19810
|
-
*
|
|
19811
|
-
* Fetches the current state of the table (as a JSON) **Note:** This API may return attributes corresponding
|
|
19812
|
-
* to the `p13nMode` property configuration.
|
|
19813
|
-
*
|
|
19814
|
-
* @returns Current state of the table
|
|
19815
|
-
*/
|
|
19816
|
-
getCurrentState(): Object;
|
|
19817
19877
|
/**
|
|
19818
19878
|
* @since 1.89
|
|
19819
19879
|
*
|
|
@@ -19951,6 +20011,17 @@ declare namespace sap {
|
|
|
19951
20011
|
* @returns Value of property `headerLevel`
|
|
19952
20012
|
*/
|
|
19953
20013
|
getHeaderLevel(): sap.ui.core.TitleLevel;
|
|
20014
|
+
/**
|
|
20015
|
+
* @since 1.116
|
|
20016
|
+
* @experimental - Internal use only
|
|
20017
|
+
*
|
|
20018
|
+
* Gets current value of property {@link #getHeaderStyle headerStyle}.
|
|
20019
|
+
*
|
|
20020
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
20021
|
+
*
|
|
20022
|
+
* @returns Value of property `headerStyle`
|
|
20023
|
+
*/
|
|
20024
|
+
getHeaderStyle(): sap.ui.core.TitleLevel;
|
|
19954
20025
|
/**
|
|
19955
20026
|
* @since 1.63
|
|
19956
20027
|
*
|
|
@@ -20237,38 +20308,6 @@ declare namespace sap {
|
|
|
20237
20308
|
*/
|
|
20238
20309
|
iIndex: int
|
|
20239
20310
|
): this;
|
|
20240
|
-
/**
|
|
20241
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20242
|
-
*
|
|
20243
|
-
* Checks whether aggregation personalization is enabled.
|
|
20244
|
-
*
|
|
20245
|
-
* @returns Whether aggregation personalization is enabled
|
|
20246
|
-
*/
|
|
20247
|
-
isAggregationEnabled(): boolean;
|
|
20248
|
-
/**
|
|
20249
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20250
|
-
*
|
|
20251
|
-
* Checks whether filter personalization is enabled.
|
|
20252
|
-
*
|
|
20253
|
-
* @returns Whether filter personalization is enabled
|
|
20254
|
-
*/
|
|
20255
|
-
isFilteringEnabled(): boolean;
|
|
20256
|
-
/**
|
|
20257
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20258
|
-
*
|
|
20259
|
-
* Checks whether group personalization is enabled.
|
|
20260
|
-
*
|
|
20261
|
-
* @returns Whether group personalization is enabled
|
|
20262
|
-
*/
|
|
20263
|
-
isGroupingEnabled(): boolean;
|
|
20264
|
-
/**
|
|
20265
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20266
|
-
*
|
|
20267
|
-
* Checks whether sort personalization is enabled.
|
|
20268
|
-
*
|
|
20269
|
-
* @returns Whether sort personalization is enabled
|
|
20270
|
-
*/
|
|
20271
|
-
isSortingEnabled(): boolean;
|
|
20272
20311
|
/**
|
|
20273
20312
|
* Checks whether the table is bound.
|
|
20274
20313
|
*
|
|
@@ -20542,7 +20581,7 @@ declare namespace sap {
|
|
|
20542
20581
|
* ID of an element which becomes the new target of this filter association; alternatively, an element instance
|
|
20543
20582
|
* may be given
|
|
20544
20583
|
*/
|
|
20545
|
-
oFilter: sap.ui.core.ID |
|
|
20584
|
+
oFilter: sap.ui.core.ID | sap.ui.mdc.IFilter
|
|
20546
20585
|
): this;
|
|
20547
20586
|
/**
|
|
20548
20587
|
* @since 1.80.0
|
|
@@ -20620,6 +20659,24 @@ declare namespace sap {
|
|
|
20620
20659
|
*/
|
|
20621
20660
|
sHeaderLevel?: sap.ui.core.TitleLevel
|
|
20622
20661
|
): this;
|
|
20662
|
+
/**
|
|
20663
|
+
* @since 1.116
|
|
20664
|
+
* @experimental - Internal use only
|
|
20665
|
+
*
|
|
20666
|
+
* Sets a new value for property {@link #getHeaderStyle headerStyle}.
|
|
20667
|
+
*
|
|
20668
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
20669
|
+
*
|
|
20670
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20671
|
+
*
|
|
20672
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
20673
|
+
*/
|
|
20674
|
+
setHeaderStyle(
|
|
20675
|
+
/**
|
|
20676
|
+
* New value for property `headerStyle`
|
|
20677
|
+
*/
|
|
20678
|
+
sHeaderStyle: sap.ui.core.TitleLevel
|
|
20679
|
+
): this;
|
|
20623
20680
|
/**
|
|
20624
20681
|
* @since 1.63
|
|
20625
20682
|
*
|
|
@@ -20949,8 +21006,8 @@ declare namespace sap {
|
|
|
20949
21006
|
/**
|
|
20950
21007
|
* Constructor for a new `ValueHelp`.
|
|
20951
21008
|
*
|
|
20952
|
-
* The `ValueHelp` element can be assigned to {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField
|
|
20953
|
-
* and {@link sap.ui.mdc.FilterField FilterField} controls using `valueHelp` association. One `ValueHelp`
|
|
21009
|
+
* The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
21010
|
+
* and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
|
|
20954
21011
|
* element instance can be assigned to multiple fields (like in different table rows). It should be placed
|
|
20955
21012
|
* in the control tree on the container holding the fields.
|
|
20956
21013
|
*
|
|
@@ -20967,8 +21024,8 @@ declare namespace sap {
|
|
|
20967
21024
|
/**
|
|
20968
21025
|
* Constructor for a new `ValueHelp`.
|
|
20969
21026
|
*
|
|
20970
|
-
* The `ValueHelp` element can be assigned to {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField
|
|
20971
|
-
* and {@link sap.ui.mdc.FilterField FilterField} controls using `valueHelp` association. One `ValueHelp`
|
|
21027
|
+
* The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
21028
|
+
* and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
|
|
20972
21029
|
* element instance can be assigned to multiple fields (like in different table rows). It should be placed
|
|
20973
21030
|
* in the control tree on the container holding the fields.
|
|
20974
21031
|
*
|
|
@@ -21782,124 +21839,34 @@ declare namespace sap {
|
|
|
21782
21839
|
aggregations?: sap.ui.mdc.State.Aggregations;
|
|
21783
21840
|
};
|
|
21784
21841
|
|
|
21785
|
-
/**
|
|
21786
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$SelectionDetailsActionPressedEventParameters'
|
|
21787
|
-
* in 1.115.1 and any later releases.
|
|
21788
|
-
*/
|
|
21789
|
-
type $ChartSelectionDetailsActionPressedEventParameters = sap.ui.mdc.Chart$SelectionDetailsActionPressedEventParameters;
|
|
21790
|
-
|
|
21791
21842
|
type Chart$SelectionDetailsActionPressedEvent = sap.ui.base.Event<Chart$SelectionDetailsActionPressedEventParameters>;
|
|
21792
21843
|
|
|
21793
|
-
/**
|
|
21794
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Field$ChangeEventParameters'
|
|
21795
|
-
* in 1.115.1 and any later releases.
|
|
21796
|
-
*/
|
|
21797
|
-
type $FieldChangeEventParameters = sap.ui.mdc.Field$ChangeEventParameters;
|
|
21798
|
-
|
|
21799
21844
|
type Field$ChangeEvent = sap.ui.base.Event<Field$ChangeEventParameters>;
|
|
21800
21845
|
|
|
21801
|
-
/**
|
|
21802
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterField$ChangeEventParameters'
|
|
21803
|
-
* in 1.115.1 and any later releases.
|
|
21804
|
-
*/
|
|
21805
|
-
type $FilterFieldChangeEventParameters = sap.ui.mdc.FilterField$ChangeEventParameters;
|
|
21806
|
-
|
|
21807
21846
|
type FilterField$ChangeEvent = sap.ui.base.Event<FilterField$ChangeEventParameters>;
|
|
21808
21847
|
|
|
21809
|
-
/**
|
|
21810
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MultiValueField$ChangeEventParameters'
|
|
21811
|
-
* in 1.115.1 and any later releases.
|
|
21812
|
-
*/
|
|
21813
|
-
type $MultiValueFieldChangeEventParameters = sap.ui.mdc.MultiValueField$ChangeEventParameters;
|
|
21814
|
-
|
|
21815
21848
|
type MultiValueField$ChangeEvent = sap.ui.base.Event<MultiValueField$ChangeEventParameters>;
|
|
21816
21849
|
|
|
21817
|
-
/**
|
|
21818
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BeforeExportEventParameters'
|
|
21819
|
-
* in 1.115.1 and any later releases.
|
|
21820
|
-
*/
|
|
21821
|
-
type $TableBeforeExportEventParameters = sap.ui.mdc.Table$BeforeExportEventParameters;
|
|
21822
|
-
|
|
21823
21850
|
type Table$BeforeExportEvent = sap.ui.base.Event<Table$BeforeExportEventParameters>;
|
|
21824
21851
|
|
|
21825
|
-
/**
|
|
21826
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$PasteEventParameters'
|
|
21827
|
-
* in 1.115.1 and any later releases.
|
|
21828
|
-
*/
|
|
21829
|
-
type $TablePasteEventParameters = sap.ui.mdc.Table$PasteEventParameters;
|
|
21830
|
-
|
|
21831
21852
|
type Table$PasteEvent = sap.ui.base.Event<Table$PasteEventParameters>;
|
|
21832
21853
|
|
|
21833
|
-
/**
|
|
21834
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowPressEventParameters'
|
|
21835
|
-
* in 1.115.1 and any later releases.
|
|
21836
|
-
*/
|
|
21837
|
-
type $TableRowPressEventParameters = sap.ui.mdc.Table$RowPressEventParameters;
|
|
21838
|
-
|
|
21839
21854
|
type Table$RowPressEvent = sap.ui.base.Event<Table$RowPressEventParameters>;
|
|
21840
21855
|
|
|
21841
|
-
/**
|
|
21842
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$SelectionChangeEventParameters'
|
|
21843
|
-
* in 1.115.1 and any later releases.
|
|
21844
|
-
*/
|
|
21845
|
-
type $TableSelectionChangeEventParameters = sap.ui.mdc.Table$SelectionChangeEventParameters;
|
|
21846
|
-
|
|
21847
21856
|
type Table$SelectionChangeEvent = sap.ui.base.Event<Table$SelectionChangeEventParameters>;
|
|
21848
21857
|
|
|
21849
|
-
/**
|
|
21850
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$ClosedEventParameters'
|
|
21851
|
-
* in 1.115.1 and any later releases.
|
|
21852
|
-
*/
|
|
21853
|
-
type $ValueHelpClosedEventParameters = sap.ui.mdc.ValueHelp$ClosedEventParameters;
|
|
21854
|
-
|
|
21855
21858
|
type ValueHelp$ClosedEvent = sap.ui.base.Event<ValueHelp$ClosedEventParameters>;
|
|
21856
21859
|
|
|
21857
|
-
/**
|
|
21858
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$DisconnectEventParameters'
|
|
21859
|
-
* in 1.115.1 and any later releases.
|
|
21860
|
-
*/
|
|
21861
|
-
type $ValueHelpDisconnectEventParameters = sap.ui.mdc.ValueHelp$DisconnectEventParameters;
|
|
21862
|
-
|
|
21863
21860
|
type ValueHelp$DisconnectEvent = sap.ui.base.Event<ValueHelp$DisconnectEventParameters>;
|
|
21864
21861
|
|
|
21865
|
-
/**
|
|
21866
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$NavigatedEventParameters'
|
|
21867
|
-
* in 1.115.1 and any later releases.
|
|
21868
|
-
*/
|
|
21869
|
-
type $ValueHelpNavigatedEventParameters = sap.ui.mdc.ValueHelp$NavigatedEventParameters;
|
|
21870
|
-
|
|
21871
21862
|
type ValueHelp$NavigatedEvent = sap.ui.base.Event<ValueHelp$NavigatedEventParameters>;
|
|
21872
21863
|
|
|
21873
|
-
/**
|
|
21874
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$OpenEventParameters'
|
|
21875
|
-
* in 1.115.1 and any later releases.
|
|
21876
|
-
*/
|
|
21877
|
-
type $ValueHelpOpenEventParameters = sap.ui.mdc.ValueHelp$OpenEventParameters;
|
|
21878
|
-
|
|
21879
21864
|
type ValueHelp$OpenEvent = sap.ui.base.Event<ValueHelp$OpenEventParameters>;
|
|
21880
21865
|
|
|
21881
|
-
/**
|
|
21882
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$OpenedEventParameters'
|
|
21883
|
-
* in 1.115.1 and any later releases.
|
|
21884
|
-
*/
|
|
21885
|
-
type $ValueHelpOpenedEventParameters = sap.ui.mdc.ValueHelp$OpenedEventParameters;
|
|
21886
|
-
|
|
21887
21866
|
type ValueHelp$OpenedEvent = sap.ui.base.Event<ValueHelp$OpenedEventParameters>;
|
|
21888
21867
|
|
|
21889
|
-
/**
|
|
21890
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$SelectEventParameters'
|
|
21891
|
-
* in 1.115.1 and any later releases.
|
|
21892
|
-
*/
|
|
21893
|
-
type $ValueHelpSelectEventParameters = sap.ui.mdc.ValueHelp$SelectEventParameters;
|
|
21894
|
-
|
|
21895
21868
|
type ValueHelp$SelectEvent = sap.ui.base.Event<ValueHelp$SelectEventParameters>;
|
|
21896
21869
|
|
|
21897
|
-
/**
|
|
21898
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$SwitchToValueHelpEventParameters'
|
|
21899
|
-
* in 1.115.1 and any later releases.
|
|
21900
|
-
*/
|
|
21901
|
-
type $ValueHelpSwitchToValueHelpEventParameters = sap.ui.mdc.ValueHelp$SwitchToValueHelpEventParameters;
|
|
21902
|
-
|
|
21903
21870
|
type ValueHelp$SwitchToValueHelpEvent = sap.ui.base.Event<ValueHelp$SwitchToValueHelpEventParameters>;
|
|
21904
21871
|
}
|
|
21905
21872
|
}
|
|
@@ -21969,8 +21936,6 @@ declare namespace sap {
|
|
|
21969
21936
|
|
|
21970
21937
|
"sap/ui/mdc/enum/OperatorValueType": undefined;
|
|
21971
21938
|
|
|
21972
|
-
"sap/ui/mdc/enum/PersistenceMode": undefined;
|
|
21973
|
-
|
|
21974
21939
|
"sap/ui/mdc/enum/ProcessingStrategy": undefined;
|
|
21975
21940
|
|
|
21976
21941
|
"sap/ui/mdc/enum/PropagationReason": undefined;
|
|
@@ -22005,8 +21970,6 @@ declare namespace sap {
|
|
|
22005
21970
|
|
|
22006
21971
|
"sap/ui/mdc/enums/OperatorValueType": undefined;
|
|
22007
21972
|
|
|
22008
|
-
"sap/ui/mdc/enums/PersistenceMode": undefined;
|
|
22009
|
-
|
|
22010
21973
|
"sap/ui/mdc/enums/ProcessingStrategy": undefined;
|
|
22011
21974
|
|
|
22012
21975
|
"sap/ui/mdc/enums/ReasonMode": undefined;
|
|
@@ -22089,8 +22052,6 @@ declare namespace sap {
|
|
|
22089
22052
|
|
|
22090
22053
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
22091
22054
|
|
|
22092
|
-
"sap/ui/mdc/filterbar/vh/FilterContainer": undefined;
|
|
22093
|
-
|
|
22094
22055
|
"sap/ui/mdc/FilterBarDelegate": undefined;
|
|
22095
22056
|
|
|
22096
22057
|
"sap/ui/mdc/FilterField": undefined;
|