@sapui5/ts-types 1.118.0 → 1.119.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +16 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +35 -1
- package/types/sap.f.d.ts +117 -3
- package/types/sap.fe.core.d.ts +87 -61
- package/types/sap.fe.macros.d.ts +164 -21
- package/types/sap.fe.navigation.d.ts +92 -87
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +25 -21
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +67 -53
- package/types/sap.insights.d.ts +141 -40
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +458 -82
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +519 -272
- package/types/sap.suite.ui.commons.d.ts +50 -6
- package/types/sap.suite.ui.generic.template.d.ts +22 -17
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +17 -15
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +41 -62
- package/types/sap.ui.core.d.ts +504 -162
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -54
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +11 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1023 -262
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +913 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +367 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +113 -115
- package/types/sap.ui.webc.main.d.ts +299 -306
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +534 -14
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.119.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -670,6 +670,836 @@ declare namespace sap {
|
|
|
670
670
|
>;
|
|
671
671
|
}
|
|
672
672
|
|
|
673
|
+
namespace rowmodes {
|
|
674
|
+
interface $AutoSettings extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
675
|
+
/**
|
|
676
|
+
* The minimum number of displayed rows.
|
|
677
|
+
*/
|
|
678
|
+
minRowCount?:
|
|
679
|
+
| int
|
|
680
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
681
|
+
| `{${string}}`;
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* The maximum number of displayed rows. The `minRowCount` is ignored if the maximum is lower than the minimum.
|
|
685
|
+
*/
|
|
686
|
+
maxRowCount?:
|
|
687
|
+
| int
|
|
688
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
689
|
+
| `{${string}}`;
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
693
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
694
|
+
*/
|
|
695
|
+
fixedTopRowCount?:
|
|
696
|
+
| int
|
|
697
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
698
|
+
| `{${string}}`;
|
|
699
|
+
|
|
700
|
+
/**
|
|
701
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
702
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
703
|
+
* rows.
|
|
704
|
+
*/
|
|
705
|
+
fixedBottomRowCount?:
|
|
706
|
+
| int
|
|
707
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
708
|
+
| `{${string}}`;
|
|
709
|
+
|
|
710
|
+
/**
|
|
711
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
712
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
713
|
+
* configuration.
|
|
714
|
+
*/
|
|
715
|
+
rowContentHeight?:
|
|
716
|
+
| int
|
|
717
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
718
|
+
| `{${string}}`;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
interface $FixedSettings
|
|
722
|
+
extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
723
|
+
/**
|
|
724
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
725
|
+
* number of fixed rows.
|
|
726
|
+
*/
|
|
727
|
+
rowCount?:
|
|
728
|
+
| int
|
|
729
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
730
|
+
| `{${string}}`;
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
734
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
735
|
+
*/
|
|
736
|
+
fixedTopRowCount?:
|
|
737
|
+
| int
|
|
738
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
739
|
+
| `{${string}}`;
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
743
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
744
|
+
* rows.
|
|
745
|
+
*/
|
|
746
|
+
fixedBottomRowCount?:
|
|
747
|
+
| int
|
|
748
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
749
|
+
| `{${string}}`;
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
753
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
754
|
+
* configuration.
|
|
755
|
+
*/
|
|
756
|
+
rowContentHeight?:
|
|
757
|
+
| int
|
|
758
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
759
|
+
| `{${string}}`;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
interface $InteractiveSettings
|
|
763
|
+
extends sap.ui.table.rowmodes.$RowModeSettings {
|
|
764
|
+
/**
|
|
765
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
766
|
+
* number of fixed rows.
|
|
767
|
+
*/
|
|
768
|
+
rowCount?:
|
|
769
|
+
| int
|
|
770
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
771
|
+
| `{${string}}`;
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* The minimum number of displayed rows.
|
|
775
|
+
*/
|
|
776
|
+
minRowCount?:
|
|
777
|
+
| int
|
|
778
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
779
|
+
| `{${string}}`;
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
783
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
784
|
+
*/
|
|
785
|
+
fixedTopRowCount?:
|
|
786
|
+
| int
|
|
787
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
788
|
+
| `{${string}}`;
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
792
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
793
|
+
* rows.
|
|
794
|
+
*/
|
|
795
|
+
fixedBottomRowCount?:
|
|
796
|
+
| int
|
|
797
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
798
|
+
| `{${string}}`;
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
802
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
803
|
+
* configuration.
|
|
804
|
+
*/
|
|
805
|
+
rowContentHeight?:
|
|
806
|
+
| int
|
|
807
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
808
|
+
| `{${string}}`;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
interface $RowModeSettings extends sap.ui.core.$ElementSettings {}
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* @since 1.119
|
|
815
|
+
*
|
|
816
|
+
* The number of rows displayed in the table is calculated based on the space it is allowed to cover (limited
|
|
817
|
+
* by the surrounding container). The table must be rendered without siblings in the DOM. The only exception
|
|
818
|
+
* is if the table's parent element is a flexbox, and the table is a flex item allowed to grow and shrink.
|
|
819
|
+
* The number of rows to be displayed can only be determined after the layout has been completed. The data
|
|
820
|
+
* can already be requested before that. To avoid multiple data requests, the amount of initially requested
|
|
821
|
+
* data is based on the maximum number of potentially displayed rows, which takes the window size into consideration,
|
|
822
|
+
* for example.
|
|
823
|
+
*/
|
|
824
|
+
class Auto extends sap.ui.table.rowmodes.RowMode {
|
|
825
|
+
/**
|
|
826
|
+
* Constructor for a new `Auto` row mode.
|
|
827
|
+
*
|
|
828
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
829
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
830
|
+
* of the syntax of the settings object.
|
|
831
|
+
*/
|
|
832
|
+
constructor(
|
|
833
|
+
/**
|
|
834
|
+
* initial settings for the new control
|
|
835
|
+
*/
|
|
836
|
+
mSettings?: sap.ui.table.rowmodes.$AutoSettings
|
|
837
|
+
);
|
|
838
|
+
/**
|
|
839
|
+
* Constructor for a new `Auto` row mode.
|
|
840
|
+
*
|
|
841
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
842
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
843
|
+
* of the syntax of the settings object.
|
|
844
|
+
*/
|
|
845
|
+
constructor(
|
|
846
|
+
/**
|
|
847
|
+
* id for the new control, generated automatically if no id is given
|
|
848
|
+
*/
|
|
849
|
+
sId?: string,
|
|
850
|
+
/**
|
|
851
|
+
* initial settings for the new control
|
|
852
|
+
*/
|
|
853
|
+
mSettings?: sap.ui.table.rowmodes.$AutoSettings
|
|
854
|
+
);
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* Creates a new subclass of class sap.ui.table.rowmodes.Auto with name `sClassName` and enriches it with
|
|
858
|
+
* the information contained in `oClassInfo`.
|
|
859
|
+
*
|
|
860
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.rowmodes.RowMode.extend}.
|
|
861
|
+
*
|
|
862
|
+
* @returns Created class / constructor function
|
|
863
|
+
*/
|
|
864
|
+
static extend<T extends Record<string, unknown>>(
|
|
865
|
+
/**
|
|
866
|
+
* Name of the class being created
|
|
867
|
+
*/
|
|
868
|
+
sClassName: string,
|
|
869
|
+
/**
|
|
870
|
+
* Object literal with information about the class
|
|
871
|
+
*/
|
|
872
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.table.rowmodes.Auto>,
|
|
873
|
+
/**
|
|
874
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
875
|
+
* used by this class
|
|
876
|
+
*/
|
|
877
|
+
FNMetaImpl?: Function
|
|
878
|
+
): Function;
|
|
879
|
+
/**
|
|
880
|
+
* Returns a metadata object for class sap.ui.table.rowmodes.Auto.
|
|
881
|
+
*
|
|
882
|
+
* @returns Metadata object describing this class
|
|
883
|
+
*/
|
|
884
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
885
|
+
/**
|
|
886
|
+
* Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
887
|
+
*
|
|
888
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
889
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
890
|
+
* rows.
|
|
891
|
+
*
|
|
892
|
+
* Default value is `0`.
|
|
893
|
+
*
|
|
894
|
+
* @returns Value of property `fixedBottomRowCount`
|
|
895
|
+
*/
|
|
896
|
+
getFixedBottomRowCount(): int;
|
|
897
|
+
/**
|
|
898
|
+
* Gets current value of property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
899
|
+
*
|
|
900
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
901
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
902
|
+
*
|
|
903
|
+
* Default value is `0`.
|
|
904
|
+
*
|
|
905
|
+
* @returns Value of property `fixedTopRowCount`
|
|
906
|
+
*/
|
|
907
|
+
getFixedTopRowCount(): int;
|
|
908
|
+
/**
|
|
909
|
+
* Gets current value of property {@link #getMaxRowCount maxRowCount}.
|
|
910
|
+
*
|
|
911
|
+
* The maximum number of displayed rows. The `minRowCount` is ignored if the maximum is lower than the minimum.
|
|
912
|
+
*
|
|
913
|
+
* Default value is `-1`.
|
|
914
|
+
*
|
|
915
|
+
* @returns Value of property `maxRowCount`
|
|
916
|
+
*/
|
|
917
|
+
getMaxRowCount(): int;
|
|
918
|
+
/**
|
|
919
|
+
* Gets current value of property {@link #getMinRowCount minRowCount}.
|
|
920
|
+
*
|
|
921
|
+
* The minimum number of displayed rows.
|
|
922
|
+
*
|
|
923
|
+
* Default value is `5`.
|
|
924
|
+
*
|
|
925
|
+
* @returns Value of property `minRowCount`
|
|
926
|
+
*/
|
|
927
|
+
getMinRowCount(): int;
|
|
928
|
+
/**
|
|
929
|
+
* Gets current value of property {@link #getRowContentHeight rowContentHeight}.
|
|
930
|
+
*
|
|
931
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
932
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
933
|
+
* configuration.
|
|
934
|
+
*
|
|
935
|
+
* Default value is `0`.
|
|
936
|
+
*
|
|
937
|
+
* @returns Value of property `rowContentHeight`
|
|
938
|
+
*/
|
|
939
|
+
getRowContentHeight(): int;
|
|
940
|
+
/**
|
|
941
|
+
* Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
942
|
+
*
|
|
943
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
944
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
945
|
+
* rows.
|
|
946
|
+
*
|
|
947
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
948
|
+
*
|
|
949
|
+
* Default value is `0`.
|
|
950
|
+
*
|
|
951
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
952
|
+
*/
|
|
953
|
+
setFixedBottomRowCount(
|
|
954
|
+
/**
|
|
955
|
+
* New value for property `fixedBottomRowCount`
|
|
956
|
+
*/
|
|
957
|
+
iFixedBottomRowCount?: int
|
|
958
|
+
): this;
|
|
959
|
+
/**
|
|
960
|
+
* Sets a new value for property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
961
|
+
*
|
|
962
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
963
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
964
|
+
*
|
|
965
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
966
|
+
*
|
|
967
|
+
* Default value is `0`.
|
|
968
|
+
*
|
|
969
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
970
|
+
*/
|
|
971
|
+
setFixedTopRowCount(
|
|
972
|
+
/**
|
|
973
|
+
* New value for property `fixedTopRowCount`
|
|
974
|
+
*/
|
|
975
|
+
iFixedTopRowCount?: int
|
|
976
|
+
): this;
|
|
977
|
+
/**
|
|
978
|
+
* Sets a new value for property {@link #getMaxRowCount maxRowCount}.
|
|
979
|
+
*
|
|
980
|
+
* The maximum number of displayed rows. The `minRowCount` is ignored if the maximum is lower than the minimum.
|
|
981
|
+
*
|
|
982
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
983
|
+
*
|
|
984
|
+
* Default value is `-1`.
|
|
985
|
+
*
|
|
986
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
987
|
+
*/
|
|
988
|
+
setMaxRowCount(
|
|
989
|
+
/**
|
|
990
|
+
* New value for property `maxRowCount`
|
|
991
|
+
*/
|
|
992
|
+
iMaxRowCount?: int
|
|
993
|
+
): this;
|
|
994
|
+
/**
|
|
995
|
+
* Sets a new value for property {@link #getMinRowCount minRowCount}.
|
|
996
|
+
*
|
|
997
|
+
* The minimum number of displayed rows.
|
|
998
|
+
*
|
|
999
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1000
|
+
*
|
|
1001
|
+
* Default value is `5`.
|
|
1002
|
+
*
|
|
1003
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1004
|
+
*/
|
|
1005
|
+
setMinRowCount(
|
|
1006
|
+
/**
|
|
1007
|
+
* New value for property `minRowCount`
|
|
1008
|
+
*/
|
|
1009
|
+
iMinRowCount?: int
|
|
1010
|
+
): this;
|
|
1011
|
+
/**
|
|
1012
|
+
* Sets a new value for property {@link #getRowContentHeight rowContentHeight}.
|
|
1013
|
+
*
|
|
1014
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
1015
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
1016
|
+
* configuration.
|
|
1017
|
+
*
|
|
1018
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1019
|
+
*
|
|
1020
|
+
* Default value is `0`.
|
|
1021
|
+
*
|
|
1022
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1023
|
+
*/
|
|
1024
|
+
setRowContentHeight(
|
|
1025
|
+
/**
|
|
1026
|
+
* New value for property `rowContentHeight`
|
|
1027
|
+
*/
|
|
1028
|
+
iRowContentHeight?: int
|
|
1029
|
+
): this;
|
|
1030
|
+
}
|
|
1031
|
+
/**
|
|
1032
|
+
* @since 1.119
|
|
1033
|
+
*
|
|
1034
|
+
* A fixed number of rows is displayed in the table.
|
|
1035
|
+
*/
|
|
1036
|
+
class Fixed extends sap.ui.table.rowmodes.RowMode {
|
|
1037
|
+
/**
|
|
1038
|
+
* Constructor for a new `Fixed` row mode.
|
|
1039
|
+
*
|
|
1040
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1041
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1042
|
+
* of the syntax of the settings object.
|
|
1043
|
+
*/
|
|
1044
|
+
constructor(
|
|
1045
|
+
/**
|
|
1046
|
+
* initial settings for the new control
|
|
1047
|
+
*/
|
|
1048
|
+
mSettings?: sap.ui.table.rowmodes.$FixedSettings
|
|
1049
|
+
);
|
|
1050
|
+
/**
|
|
1051
|
+
* Constructor for a new `Fixed` row mode.
|
|
1052
|
+
*
|
|
1053
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1054
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1055
|
+
* of the syntax of the settings object.
|
|
1056
|
+
*/
|
|
1057
|
+
constructor(
|
|
1058
|
+
/**
|
|
1059
|
+
* id for the new control, generated automatically if no id is given
|
|
1060
|
+
*/
|
|
1061
|
+
sId?: string,
|
|
1062
|
+
/**
|
|
1063
|
+
* initial settings for the new control
|
|
1064
|
+
*/
|
|
1065
|
+
mSettings?: sap.ui.table.rowmodes.$FixedSettings
|
|
1066
|
+
);
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* Creates a new subclass of class sap.ui.table.rowmodes.Fixed with name `sClassName` and enriches it with
|
|
1070
|
+
* the information contained in `oClassInfo`.
|
|
1071
|
+
*
|
|
1072
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.rowmodes.RowMode.extend}.
|
|
1073
|
+
*
|
|
1074
|
+
* @returns Created class / constructor function
|
|
1075
|
+
*/
|
|
1076
|
+
static extend<T extends Record<string, unknown>>(
|
|
1077
|
+
/**
|
|
1078
|
+
* Name of the class being created
|
|
1079
|
+
*/
|
|
1080
|
+
sClassName: string,
|
|
1081
|
+
/**
|
|
1082
|
+
* Object literal with information about the class
|
|
1083
|
+
*/
|
|
1084
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.table.rowmodes.Fixed>,
|
|
1085
|
+
/**
|
|
1086
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1087
|
+
* used by this class
|
|
1088
|
+
*/
|
|
1089
|
+
FNMetaImpl?: Function
|
|
1090
|
+
): Function;
|
|
1091
|
+
/**
|
|
1092
|
+
* Returns a metadata object for class sap.ui.table.rowmodes.Fixed.
|
|
1093
|
+
*
|
|
1094
|
+
* @returns Metadata object describing this class
|
|
1095
|
+
*/
|
|
1096
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1097
|
+
/**
|
|
1098
|
+
* Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
1099
|
+
*
|
|
1100
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
1101
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
1102
|
+
* rows.
|
|
1103
|
+
*
|
|
1104
|
+
* Default value is `0`.
|
|
1105
|
+
*
|
|
1106
|
+
* @returns Value of property `fixedBottomRowCount`
|
|
1107
|
+
*/
|
|
1108
|
+
getFixedBottomRowCount(): int;
|
|
1109
|
+
/**
|
|
1110
|
+
* Gets current value of property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
1111
|
+
*
|
|
1112
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
1113
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
1114
|
+
*
|
|
1115
|
+
* Default value is `0`.
|
|
1116
|
+
*
|
|
1117
|
+
* @returns Value of property `fixedTopRowCount`
|
|
1118
|
+
*/
|
|
1119
|
+
getFixedTopRowCount(): int;
|
|
1120
|
+
/**
|
|
1121
|
+
* Gets current value of property {@link #getRowContentHeight rowContentHeight}.
|
|
1122
|
+
*
|
|
1123
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
1124
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
1125
|
+
* configuration.
|
|
1126
|
+
*
|
|
1127
|
+
* Default value is `0`.
|
|
1128
|
+
*
|
|
1129
|
+
* @returns Value of property `rowContentHeight`
|
|
1130
|
+
*/
|
|
1131
|
+
getRowContentHeight(): int;
|
|
1132
|
+
/**
|
|
1133
|
+
* Gets current value of property {@link #getRowCount rowCount}.
|
|
1134
|
+
*
|
|
1135
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
1136
|
+
* number of fixed rows.
|
|
1137
|
+
*
|
|
1138
|
+
* Default value is `10`.
|
|
1139
|
+
*
|
|
1140
|
+
* @returns Value of property `rowCount`
|
|
1141
|
+
*/
|
|
1142
|
+
getRowCount(): int;
|
|
1143
|
+
/**
|
|
1144
|
+
* Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
1145
|
+
*
|
|
1146
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
1147
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
1148
|
+
* rows.
|
|
1149
|
+
*
|
|
1150
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1151
|
+
*
|
|
1152
|
+
* Default value is `0`.
|
|
1153
|
+
*
|
|
1154
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1155
|
+
*/
|
|
1156
|
+
setFixedBottomRowCount(
|
|
1157
|
+
/**
|
|
1158
|
+
* New value for property `fixedBottomRowCount`
|
|
1159
|
+
*/
|
|
1160
|
+
iFixedBottomRowCount?: int
|
|
1161
|
+
): this;
|
|
1162
|
+
/**
|
|
1163
|
+
* Sets a new value for property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
1164
|
+
*
|
|
1165
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
1166
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
1167
|
+
*
|
|
1168
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1169
|
+
*
|
|
1170
|
+
* Default value is `0`.
|
|
1171
|
+
*
|
|
1172
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1173
|
+
*/
|
|
1174
|
+
setFixedTopRowCount(
|
|
1175
|
+
/**
|
|
1176
|
+
* New value for property `fixedTopRowCount`
|
|
1177
|
+
*/
|
|
1178
|
+
iFixedTopRowCount?: int
|
|
1179
|
+
): this;
|
|
1180
|
+
/**
|
|
1181
|
+
* Sets a new value for property {@link #getRowContentHeight rowContentHeight}.
|
|
1182
|
+
*
|
|
1183
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
1184
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
1185
|
+
* configuration.
|
|
1186
|
+
*
|
|
1187
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1188
|
+
*
|
|
1189
|
+
* Default value is `0`.
|
|
1190
|
+
*
|
|
1191
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1192
|
+
*/
|
|
1193
|
+
setRowContentHeight(
|
|
1194
|
+
/**
|
|
1195
|
+
* New value for property `rowContentHeight`
|
|
1196
|
+
*/
|
|
1197
|
+
iRowContentHeight?: int
|
|
1198
|
+
): this;
|
|
1199
|
+
/**
|
|
1200
|
+
* Sets a new value for property {@link #getRowCount rowCount}.
|
|
1201
|
+
*
|
|
1202
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
1203
|
+
* number of fixed rows.
|
|
1204
|
+
*
|
|
1205
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1206
|
+
*
|
|
1207
|
+
* Default value is `10`.
|
|
1208
|
+
*
|
|
1209
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1210
|
+
*/
|
|
1211
|
+
setRowCount(
|
|
1212
|
+
/**
|
|
1213
|
+
* New value for property `rowCount`
|
|
1214
|
+
*/
|
|
1215
|
+
iRowCount?: int
|
|
1216
|
+
): this;
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* @since 1.119
|
|
1220
|
+
*
|
|
1221
|
+
* The user can change the number of displayed rows by dragging a resizer.
|
|
1222
|
+
*/
|
|
1223
|
+
class Interactive extends sap.ui.table.rowmodes.RowMode {
|
|
1224
|
+
/**
|
|
1225
|
+
* Constructor for a new `Interactive` row mode.
|
|
1226
|
+
*
|
|
1227
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1228
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1229
|
+
* of the syntax of the settings object.
|
|
1230
|
+
*/
|
|
1231
|
+
constructor(
|
|
1232
|
+
/**
|
|
1233
|
+
* initial settings for the new control
|
|
1234
|
+
*/
|
|
1235
|
+
mSettings?: sap.ui.table.rowmodes.$InteractiveSettings
|
|
1236
|
+
);
|
|
1237
|
+
/**
|
|
1238
|
+
* Constructor for a new `Interactive` row mode.
|
|
1239
|
+
*
|
|
1240
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1241
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1242
|
+
* of the syntax of the settings object.
|
|
1243
|
+
*/
|
|
1244
|
+
constructor(
|
|
1245
|
+
/**
|
|
1246
|
+
* id for the new control, generated automatically if no id is given
|
|
1247
|
+
*/
|
|
1248
|
+
sId?: string,
|
|
1249
|
+
/**
|
|
1250
|
+
* initial settings for the new control
|
|
1251
|
+
*/
|
|
1252
|
+
mSettings?: sap.ui.table.rowmodes.$InteractiveSettings
|
|
1253
|
+
);
|
|
1254
|
+
|
|
1255
|
+
/**
|
|
1256
|
+
* Returns a metadata object for class sap.ui.table.rowmodes.Interactive.
|
|
1257
|
+
*
|
|
1258
|
+
* @returns Metadata object describing this class
|
|
1259
|
+
*/
|
|
1260
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1261
|
+
/**
|
|
1262
|
+
* Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
1263
|
+
*
|
|
1264
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
1265
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
1266
|
+
* rows.
|
|
1267
|
+
*
|
|
1268
|
+
* Default value is `0`.
|
|
1269
|
+
*
|
|
1270
|
+
* @returns Value of property `fixedBottomRowCount`
|
|
1271
|
+
*/
|
|
1272
|
+
getFixedBottomRowCount(): int;
|
|
1273
|
+
/**
|
|
1274
|
+
* Gets current value of property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
1275
|
+
*
|
|
1276
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
1277
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
1278
|
+
*
|
|
1279
|
+
* Default value is `0`.
|
|
1280
|
+
*
|
|
1281
|
+
* @returns Value of property `fixedTopRowCount`
|
|
1282
|
+
*/
|
|
1283
|
+
getFixedTopRowCount(): int;
|
|
1284
|
+
/**
|
|
1285
|
+
* Gets current value of property {@link #getMinRowCount minRowCount}.
|
|
1286
|
+
*
|
|
1287
|
+
* The minimum number of displayed rows.
|
|
1288
|
+
*
|
|
1289
|
+
* Default value is `5`.
|
|
1290
|
+
*
|
|
1291
|
+
* @returns Value of property `minRowCount`
|
|
1292
|
+
*/
|
|
1293
|
+
getMinRowCount(): int;
|
|
1294
|
+
/**
|
|
1295
|
+
* Gets current value of property {@link #getRowContentHeight rowContentHeight}.
|
|
1296
|
+
*
|
|
1297
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
1298
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
1299
|
+
* configuration.
|
|
1300
|
+
*
|
|
1301
|
+
* Default value is `0`.
|
|
1302
|
+
*
|
|
1303
|
+
* @returns Value of property `rowContentHeight`
|
|
1304
|
+
*/
|
|
1305
|
+
getRowContentHeight(): int;
|
|
1306
|
+
/**
|
|
1307
|
+
* Gets current value of property {@link #getRowCount rowCount}.
|
|
1308
|
+
*
|
|
1309
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
1310
|
+
* number of fixed rows.
|
|
1311
|
+
*
|
|
1312
|
+
* Default value is `10`.
|
|
1313
|
+
*
|
|
1314
|
+
* @returns Value of property `rowCount`
|
|
1315
|
+
*/
|
|
1316
|
+
getRowCount(): int;
|
|
1317
|
+
/**
|
|
1318
|
+
* Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
1319
|
+
*
|
|
1320
|
+
* The number of rows in the fixed area at the bottom. If the number of fixed rows exceeds the number of
|
|
1321
|
+
* displayed rows, the number of fixed rows is reduced. The table may limit the possible number of fixed
|
|
1322
|
+
* rows.
|
|
1323
|
+
*
|
|
1324
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1325
|
+
*
|
|
1326
|
+
* Default value is `0`.
|
|
1327
|
+
*
|
|
1328
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1329
|
+
*/
|
|
1330
|
+
setFixedBottomRowCount(
|
|
1331
|
+
/**
|
|
1332
|
+
* New value for property `fixedBottomRowCount`
|
|
1333
|
+
*/
|
|
1334
|
+
iFixedBottomRowCount?: int
|
|
1335
|
+
): this;
|
|
1336
|
+
/**
|
|
1337
|
+
* Sets a new value for property {@link #getFixedTopRowCount fixedTopRowCount}.
|
|
1338
|
+
*
|
|
1339
|
+
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
1340
|
+
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
1341
|
+
*
|
|
1342
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1343
|
+
*
|
|
1344
|
+
* Default value is `0`.
|
|
1345
|
+
*
|
|
1346
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1347
|
+
*/
|
|
1348
|
+
setFixedTopRowCount(
|
|
1349
|
+
/**
|
|
1350
|
+
* New value for property `fixedTopRowCount`
|
|
1351
|
+
*/
|
|
1352
|
+
iFixedTopRowCount?: int
|
|
1353
|
+
): this;
|
|
1354
|
+
/**
|
|
1355
|
+
* Sets a new value for property {@link #getMinRowCount minRowCount}.
|
|
1356
|
+
*
|
|
1357
|
+
* The minimum number of displayed rows.
|
|
1358
|
+
*
|
|
1359
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1360
|
+
*
|
|
1361
|
+
* Default value is `5`.
|
|
1362
|
+
*
|
|
1363
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1364
|
+
*/
|
|
1365
|
+
setMinRowCount(
|
|
1366
|
+
/**
|
|
1367
|
+
* New value for property `minRowCount`
|
|
1368
|
+
*/
|
|
1369
|
+
iMinRowCount?: int
|
|
1370
|
+
): this;
|
|
1371
|
+
/**
|
|
1372
|
+
* Sets a new value for property {@link #getRowContentHeight rowContentHeight}.
|
|
1373
|
+
*
|
|
1374
|
+
* The row content height in pixel. The actual row height is also influenced by other factors, such as the
|
|
1375
|
+
* border width. If no value is set (includes 0), a default height is applied based on the content density
|
|
1376
|
+
* configuration.
|
|
1377
|
+
*
|
|
1378
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1379
|
+
*
|
|
1380
|
+
* Default value is `0`.
|
|
1381
|
+
*
|
|
1382
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1383
|
+
*/
|
|
1384
|
+
setRowContentHeight(
|
|
1385
|
+
/**
|
|
1386
|
+
* New value for property `rowContentHeight`
|
|
1387
|
+
*/
|
|
1388
|
+
iRowContentHeight?: int
|
|
1389
|
+
): this;
|
|
1390
|
+
/**
|
|
1391
|
+
* Sets a new value for property {@link #getRowCount rowCount}.
|
|
1392
|
+
*
|
|
1393
|
+
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
1394
|
+
* number of fixed rows.
|
|
1395
|
+
*
|
|
1396
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1397
|
+
*
|
|
1398
|
+
* Default value is `10`.
|
|
1399
|
+
*
|
|
1400
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1401
|
+
*/
|
|
1402
|
+
setRowCount(
|
|
1403
|
+
/**
|
|
1404
|
+
* New value for property `rowCount`
|
|
1405
|
+
*/
|
|
1406
|
+
iRowCount?: int
|
|
1407
|
+
): this;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
* @since 1.119
|
|
1411
|
+
*
|
|
1412
|
+
* Base class for row modes. Note: Do not create subclasses.
|
|
1413
|
+
*/
|
|
1414
|
+
class RowMode extends sap.ui.core.Element {
|
|
1415
|
+
/**
|
|
1416
|
+
* Constructor for a new `RowMode`.
|
|
1417
|
+
*
|
|
1418
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1419
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1420
|
+
* of the syntax of the settings object.
|
|
1421
|
+
*
|
|
1422
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Element#constructor sap.ui.core.Element }
|
|
1423
|
+
* can be used.
|
|
1424
|
+
*/
|
|
1425
|
+
constructor(
|
|
1426
|
+
/**
|
|
1427
|
+
* initial settings for the new control
|
|
1428
|
+
*/
|
|
1429
|
+
mSettings?: sap.ui.table.rowmodes.$RowModeSettings
|
|
1430
|
+
);
|
|
1431
|
+
/**
|
|
1432
|
+
* Constructor for a new `RowMode`.
|
|
1433
|
+
*
|
|
1434
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1435
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1436
|
+
* of the syntax of the settings object.
|
|
1437
|
+
*
|
|
1438
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.core.Element#constructor sap.ui.core.Element }
|
|
1439
|
+
* can be used.
|
|
1440
|
+
*/
|
|
1441
|
+
constructor(
|
|
1442
|
+
/**
|
|
1443
|
+
* id for the new control, generated automatically if no id is given
|
|
1444
|
+
*/
|
|
1445
|
+
sId?: string,
|
|
1446
|
+
/**
|
|
1447
|
+
* initial settings for the new control
|
|
1448
|
+
*/
|
|
1449
|
+
mSettings?: sap.ui.table.rowmodes.$RowModeSettings
|
|
1450
|
+
);
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* Creates a new subclass of class sap.ui.table.rowmodes.RowMode with name `sClassName` and enriches it
|
|
1454
|
+
* with the information contained in `oClassInfo`.
|
|
1455
|
+
*
|
|
1456
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1457
|
+
*
|
|
1458
|
+
* @returns Created class / constructor function
|
|
1459
|
+
*/
|
|
1460
|
+
static extend<T extends Record<string, unknown>>(
|
|
1461
|
+
/**
|
|
1462
|
+
* Name of the class being created
|
|
1463
|
+
*/
|
|
1464
|
+
sClassName: string,
|
|
1465
|
+
/**
|
|
1466
|
+
* Object literal with information about the class
|
|
1467
|
+
*/
|
|
1468
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.table.rowmodes.RowMode>,
|
|
1469
|
+
/**
|
|
1470
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1471
|
+
* used by this class
|
|
1472
|
+
*/
|
|
1473
|
+
FNMetaImpl?: Function
|
|
1474
|
+
): Function;
|
|
1475
|
+
/**
|
|
1476
|
+
* Returns a metadata object for class sap.ui.table.rowmodes.RowMode.
|
|
1477
|
+
*
|
|
1478
|
+
* @returns Metadata object describing this class
|
|
1479
|
+
*/
|
|
1480
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* @since 1.119
|
|
1484
|
+
*
|
|
1485
|
+
* Defines the row mode.
|
|
1486
|
+
*/
|
|
1487
|
+
enum Type {
|
|
1488
|
+
/**
|
|
1489
|
+
* Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Auto}
|
|
1490
|
+
*/
|
|
1491
|
+
Auto = "Auto",
|
|
1492
|
+
/**
|
|
1493
|
+
* Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Fixed}
|
|
1494
|
+
*/
|
|
1495
|
+
Fixed = "Fixed",
|
|
1496
|
+
/**
|
|
1497
|
+
* Equivalent to the default configuration of {@link module:sap/ui/table/rowmodes/Interactive}
|
|
1498
|
+
*/
|
|
1499
|
+
Interactive = "Interactive",
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
|
|
673
1503
|
interface $AnalyticalColumnSettings extends sap.ui.table.$ColumnSettings {
|
|
674
1504
|
/**
|
|
675
1505
|
* Defines the primary model property which is used inside the Column. In case of the analytical extension
|
|
@@ -1275,6 +2105,8 @@ declare namespace sap {
|
|
|
1275
2105
|
| `{${string}}`;
|
|
1276
2106
|
|
|
1277
2107
|
/**
|
|
2108
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
2109
|
+
*
|
|
1278
2110
|
* Row height in pixel.
|
|
1279
2111
|
*
|
|
1280
2112
|
* In the table's header, it defines the minimum height of the row, but it cannot be less than the default
|
|
@@ -1320,6 +2152,8 @@ declare namespace sap {
|
|
|
1320
2152
|
| `{${string}}`;
|
|
1321
2153
|
|
|
1322
2154
|
/**
|
|
2155
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
2156
|
+
*
|
|
1323
2157
|
* Number of visible rows of the table.
|
|
1324
2158
|
*/
|
|
1325
2159
|
visibleRowCount?:
|
|
@@ -1462,6 +2296,7 @@ declare namespace sap {
|
|
|
1462
2296
|
|
|
1463
2297
|
/**
|
|
1464
2298
|
* @since 1.9.2
|
|
2299
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
1465
2300
|
*
|
|
1466
2301
|
* Defines how the table handles the visible rows in the table.
|
|
1467
2302
|
*
|
|
@@ -1485,6 +2320,8 @@ declare namespace sap {
|
|
|
1485
2320
|
| `{${string}}`;
|
|
1486
2321
|
|
|
1487
2322
|
/**
|
|
2323
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
2324
|
+
*
|
|
1488
2325
|
* This property is used to set the minimum count of visible rows when the property visibleRowCountMode
|
|
1489
2326
|
* is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
|
|
1490
2327
|
*/
|
|
@@ -1508,6 +2345,8 @@ declare namespace sap {
|
|
|
1508
2345
|
| `{${string}}`;
|
|
1509
2346
|
|
|
1510
2347
|
/**
|
|
2348
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
2349
|
+
*
|
|
1511
2350
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
1512
2351
|
* fixed, will scroll.
|
|
1513
2352
|
*/
|
|
@@ -1518,6 +2357,7 @@ declare namespace sap {
|
|
|
1518
2357
|
|
|
1519
2358
|
/**
|
|
1520
2359
|
* @since 1.18.7
|
|
2360
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
1521
2361
|
*
|
|
1522
2362
|
* Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
|
|
1523
2363
|
* not fixed, will scroll.
|
|
@@ -1689,6 +2529,17 @@ declare namespace sap {
|
|
|
1689
2529
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
1690
2530
|
| `{${string}}`;
|
|
1691
2531
|
|
|
2532
|
+
/**
|
|
2533
|
+
* @since 1.119
|
|
2534
|
+
*
|
|
2535
|
+
* Defines how the table handles the rows.
|
|
2536
|
+
*/
|
|
2537
|
+
rowMode?:
|
|
2538
|
+
| sap.ui.table.rowmodes.Type
|
|
2539
|
+
| sap.ui.table.rowmodes.RowMode
|
|
2540
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2541
|
+
| `{${string}}`;
|
|
2542
|
+
|
|
1692
2543
|
/**
|
|
1693
2544
|
* The value for the noData aggregation can be either a string value or a control instance. The control
|
|
1694
2545
|
* is shown, in case there is no data for the Table available. In case of a string value this will simply
|
|
@@ -6312,6 +7163,14 @@ declare namespace sap {
|
|
|
6312
7163
|
* @returns Reference to `this` in order to allow method chaining
|
|
6313
7164
|
*/
|
|
6314
7165
|
destroyRowActionTemplate(): this;
|
|
7166
|
+
/**
|
|
7167
|
+
* @since 1.119
|
|
7168
|
+
*
|
|
7169
|
+
* Destroys the rowMode in the aggregation {@link #getRowMode rowMode}.
|
|
7170
|
+
*
|
|
7171
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
7172
|
+
*/
|
|
7173
|
+
destroyRowMode(): this;
|
|
6315
7174
|
/**
|
|
6316
7175
|
* Destroys all the rows in the aggregation {@link #getRows rows}.
|
|
6317
7176
|
*
|
|
@@ -7227,6 +8086,7 @@ declare namespace sap {
|
|
|
7227
8086
|
getFirstVisibleRow(): int;
|
|
7228
8087
|
/**
|
|
7229
8088
|
* @since 1.18.7
|
|
8089
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
7230
8090
|
*
|
|
7231
8091
|
* Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
7232
8092
|
*
|
|
@@ -7255,6 +8115,8 @@ declare namespace sap {
|
|
|
7255
8115
|
*/
|
|
7256
8116
|
getFixedColumnCount(): int;
|
|
7257
8117
|
/**
|
|
8118
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8119
|
+
*
|
|
7258
8120
|
* Gets current value of property {@link #getFixedRowCount fixedRowCount}.
|
|
7259
8121
|
*
|
|
7260
8122
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
@@ -7281,6 +8143,8 @@ declare namespace sap {
|
|
|
7281
8143
|
*/
|
|
7282
8144
|
getGroupBy(): sap.ui.core.ID;
|
|
7283
8145
|
/**
|
|
8146
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8147
|
+
*
|
|
7284
8148
|
* Gets current value of property {@link #getMinAutoRowCount minAutoRowCount}.
|
|
7285
8149
|
*
|
|
7286
8150
|
* This property is used to set the minimum count of visible rows when the property visibleRowCountMode
|
|
@@ -7347,6 +8211,8 @@ declare namespace sap {
|
|
|
7347
8211
|
*/
|
|
7348
8212
|
getRowActionTemplate(): sap.ui.table.RowAction;
|
|
7349
8213
|
/**
|
|
8214
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8215
|
+
*
|
|
7350
8216
|
* Gets current value of property {@link #getRowHeight rowHeight}.
|
|
7351
8217
|
*
|
|
7352
8218
|
* Row height in pixel.
|
|
@@ -7366,6 +8232,16 @@ declare namespace sap {
|
|
|
7366
8232
|
* @returns Value of property `rowHeight`
|
|
7367
8233
|
*/
|
|
7368
8234
|
getRowHeight(): int;
|
|
8235
|
+
/**
|
|
8236
|
+
* @since 1.119
|
|
8237
|
+
*
|
|
8238
|
+
* Gets content of aggregation {@link #getRowMode rowMode}.
|
|
8239
|
+
*
|
|
8240
|
+
* Defines how the table handles the rows.
|
|
8241
|
+
*/
|
|
8242
|
+
getRowMode():
|
|
8243
|
+
| sap.ui.table.rowmodes.RowMode
|
|
8244
|
+
| sap.ui.table.rowmodes.Type;
|
|
7369
8245
|
/**
|
|
7370
8246
|
* Gets content of aggregation {@link #getRows rows}.
|
|
7371
8247
|
*
|
|
@@ -7520,6 +8396,8 @@ declare namespace sap {
|
|
|
7520
8396
|
*/
|
|
7521
8397
|
getToolbar(): sap.ui.core.Toolbar;
|
|
7522
8398
|
/**
|
|
8399
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8400
|
+
*
|
|
7523
8401
|
* Gets current value of property {@link #getVisibleRowCount visibleRowCount}.
|
|
7524
8402
|
*
|
|
7525
8403
|
* Number of visible rows of the table.
|
|
@@ -7531,6 +8409,7 @@ declare namespace sap {
|
|
|
7531
8409
|
getVisibleRowCount(): int;
|
|
7532
8410
|
/**
|
|
7533
8411
|
* @since 1.9.2
|
|
8412
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
7534
8413
|
*
|
|
7535
8414
|
* Gets current value of property {@link #getVisibleRowCountMode visibleRowCountMode}.
|
|
7536
8415
|
*
|
|
@@ -8080,6 +8959,7 @@ declare namespace sap {
|
|
|
8080
8959
|
): this;
|
|
8081
8960
|
/**
|
|
8082
8961
|
* @since 1.18.7
|
|
8962
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8083
8963
|
*
|
|
8084
8964
|
* Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
8085
8965
|
*
|
|
@@ -8122,6 +9002,8 @@ declare namespace sap {
|
|
|
8122
9002
|
iFixedColumnCount?: int
|
|
8123
9003
|
): this;
|
|
8124
9004
|
/**
|
|
9005
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
9006
|
+
*
|
|
8125
9007
|
* Sets a new value for property {@link #getFixedRowCount fixedRowCount}.
|
|
8126
9008
|
*
|
|
8127
9009
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
@@ -8166,6 +9048,8 @@ declare namespace sap {
|
|
|
8166
9048
|
oGroupBy: sap.ui.core.ID | sap.ui.table.Column
|
|
8167
9049
|
): this;
|
|
8168
9050
|
/**
|
|
9051
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
9052
|
+
*
|
|
8169
9053
|
* Sets a new value for property {@link #getMinAutoRowCount minAutoRowCount}.
|
|
8170
9054
|
*
|
|
8171
9055
|
* This property is used to set the minimum count of visible rows when the property visibleRowCountMode
|
|
@@ -8246,6 +9130,8 @@ declare namespace sap {
|
|
|
8246
9130
|
oRowActionTemplate: sap.ui.table.RowAction
|
|
8247
9131
|
): this;
|
|
8248
9132
|
/**
|
|
9133
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
9134
|
+
*
|
|
8249
9135
|
* Sets a new value for property {@link #getRowHeight rowHeight}.
|
|
8250
9136
|
*
|
|
8251
9137
|
* Row height in pixel.
|
|
@@ -8272,6 +9158,19 @@ declare namespace sap {
|
|
|
8272
9158
|
*/
|
|
8273
9159
|
iRowHeight?: int
|
|
8274
9160
|
): this;
|
|
9161
|
+
/**
|
|
9162
|
+
* @since 1.119
|
|
9163
|
+
*
|
|
9164
|
+
* Sets the aggregated {@link #getRowMode rowMode}.
|
|
9165
|
+
*
|
|
9166
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
9167
|
+
*/
|
|
9168
|
+
setRowMode(
|
|
9169
|
+
/**
|
|
9170
|
+
* The rowMode to set
|
|
9171
|
+
*/
|
|
9172
|
+
vRowMode: sap.ui.table.rowmodes.RowMode | sap.ui.table.rowmodes.Type
|
|
9173
|
+
): this;
|
|
8275
9174
|
/**
|
|
8276
9175
|
* Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
|
|
8277
9176
|
*
|
|
@@ -8455,6 +9354,8 @@ declare namespace sap {
|
|
|
8455
9354
|
vTooltip: string | sap.ui.core.TooltipBase
|
|
8456
9355
|
): this;
|
|
8457
9356
|
/**
|
|
9357
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
9358
|
+
*
|
|
8458
9359
|
* Sets a new value for property {@link #getVisibleRowCount visibleRowCount}.
|
|
8459
9360
|
*
|
|
8460
9361
|
* Number of visible rows of the table.
|
|
@@ -8473,6 +9374,7 @@ declare namespace sap {
|
|
|
8473
9374
|
): this;
|
|
8474
9375
|
/**
|
|
8475
9376
|
* @since 1.9.2
|
|
9377
|
+
* @deprecated (since 1.119) - use the `rowMode` aggregation instead.
|
|
8476
9378
|
*
|
|
8477
9379
|
* Sets a new value for property {@link #getVisibleRowCountMode visibleRowCountMode}.
|
|
8478
9380
|
*
|
|
@@ -9724,6 +10626,16 @@ declare namespace sap {
|
|
|
9724
10626
|
|
|
9725
10627
|
"sap/ui/table/RowActionItem": undefined;
|
|
9726
10628
|
|
|
10629
|
+
"sap/ui/table/rowmodes/Auto": undefined;
|
|
10630
|
+
|
|
10631
|
+
"sap/ui/table/rowmodes/Fixed": undefined;
|
|
10632
|
+
|
|
10633
|
+
"sap/ui/table/rowmodes/Interactive": undefined;
|
|
10634
|
+
|
|
10635
|
+
"sap/ui/table/rowmodes/RowMode": undefined;
|
|
10636
|
+
|
|
10637
|
+
"sap/ui/table/rowmodes/Type": undefined;
|
|
10638
|
+
|
|
9727
10639
|
"sap/ui/table/RowSettings": undefined;
|
|
9728
10640
|
|
|
9729
10641
|
"sap/ui/table/Table": undefined;
|