@openui5/types 1.127.1 → 1.129.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.f.d.ts +1414 -225
- package/types/sap.m.d.ts +525 -55
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +100 -88
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +20 -2
- package/types/sap.ui.integration.d.ts +91 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +998 -239
- 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 +156 -38
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +807 -85
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -1
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -1754,8 +1754,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1754
1754
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
1755
1755
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
1756
1756
|
*
|
|
1757
|
-
* A column menu entry for filtering can only be generated if the `
|
|
1758
|
-
* entry is a text input field.
|
|
1757
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
1758
|
+
* are set. The default menu entry is a text input field.
|
|
1759
1759
|
*
|
|
1760
1760
|
*
|
|
1761
1761
|
* @returns Value of property `filterProperty`
|
|
@@ -1942,7 +1942,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1942
1942
|
/**
|
|
1943
1943
|
* Gets current value of property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
1944
1944
|
*
|
|
1945
|
-
* Defines if the filter menu entry is displayed
|
|
1945
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
1946
|
+
* is set.
|
|
1946
1947
|
*
|
|
1947
1948
|
* Default value is `true`.
|
|
1948
1949
|
*
|
|
@@ -1954,7 +1955,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1954
1955
|
/**
|
|
1955
1956
|
* Gets current value of property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
1956
1957
|
*
|
|
1957
|
-
* Defines if the sort menu entries are displayed
|
|
1958
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
1959
|
+
* is set.
|
|
1958
1960
|
*
|
|
1959
1961
|
* Default value is `true`.
|
|
1960
1962
|
*
|
|
@@ -2000,7 +2002,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2000
2002
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2001
2003
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2002
2004
|
*
|
|
2003
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2005
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2006
|
+
* are set.
|
|
2004
2007
|
*
|
|
2005
2008
|
*
|
|
2006
2009
|
* @returns Value of property `sortProperty`
|
|
@@ -2009,17 +2012,22 @@ declare module "sap/ui/table/Column" {
|
|
|
2009
2012
|
/**
|
|
2010
2013
|
* Gets content of aggregation {@link #getTemplate template}.
|
|
2011
2014
|
*
|
|
2012
|
-
* Template (cell renderer) of this column.
|
|
2013
|
-
*
|
|
2014
|
-
*
|
|
2015
|
-
*
|
|
2016
|
-
*
|
|
2017
|
-
* is
|
|
2015
|
+
* Template (cell renderer) of this column.
|
|
2016
|
+
*
|
|
2017
|
+
* A template is decoupled from the column. Each time the template's properties or aggregations have been
|
|
2018
|
+
* changed, the template has to be applied again via `setTemplate` for the changes to take effect.
|
|
2019
|
+
*
|
|
2020
|
+
* If there is no template, the column will not be rendered in the table.
|
|
2021
|
+
*
|
|
2022
|
+
* The set of supported controls is limited. See section "{@link https://ui5.sap.com/#/topic/148892ff9aea4a18b912829791e38f3e Tables: Which One Should I Choose?}"
|
|
2018
2023
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
2019
2024
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
2020
2025
|
* and keyboard support.
|
|
2021
2026
|
*
|
|
2022
|
-
*
|
|
2027
|
+
* If a string is defined, this string is interpreted as the binding path. Internally, a default text control
|
|
2028
|
+
* will be created with its `text` property bound to the value of the string. The default template depends
|
|
2029
|
+
* on the libraries loaded. **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control`
|
|
2030
|
+
* instead.
|
|
2023
2031
|
*/
|
|
2024
2032
|
getTemplate(): Control | string;
|
|
2025
2033
|
/**
|
|
@@ -2195,8 +2203,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2195
2203
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
2196
2204
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
2197
2205
|
*
|
|
2198
|
-
* A column menu entry for filtering can only be generated if the `
|
|
2199
|
-
* entry is a text input field.
|
|
2206
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
2207
|
+
* are set. The default menu entry is a text input field.
|
|
2200
2208
|
*
|
|
2201
2209
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2202
2210
|
*
|
|
@@ -2441,7 +2449,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2441
2449
|
/**
|
|
2442
2450
|
* Sets a new value for property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
2443
2451
|
*
|
|
2444
|
-
* Defines if the filter menu entry is displayed
|
|
2452
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2453
|
+
* is set.
|
|
2445
2454
|
*
|
|
2446
2455
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2447
2456
|
*
|
|
@@ -2460,7 +2469,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2460
2469
|
/**
|
|
2461
2470
|
* Sets a new value for property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
2462
2471
|
*
|
|
2463
|
-
* Defines if the sort menu entries are displayed
|
|
2472
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2473
|
+
* is set.
|
|
2464
2474
|
*
|
|
2465
2475
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2466
2476
|
*
|
|
@@ -2527,7 +2537,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2527
2537
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2528
2538
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2529
2539
|
*
|
|
2530
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2540
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2541
|
+
* are set.
|
|
2531
2542
|
*
|
|
2532
2543
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2533
2544
|
*
|
|
@@ -2694,7 +2705,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2694
2705
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2695
2706
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2696
2707
|
*
|
|
2697
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2708
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2709
|
+
* are set.
|
|
2698
2710
|
*/
|
|
2699
2711
|
sortProperty?: string | PropertyBindingInfo;
|
|
2700
2712
|
|
|
@@ -2710,8 +2722,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2710
2722
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
2711
2723
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
2712
2724
|
*
|
|
2713
|
-
* A column menu entry for filtering can only be generated if the `
|
|
2714
|
-
* entry is a text input field.
|
|
2725
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
2726
|
+
* are set. The default menu entry is a text input field.
|
|
2715
2727
|
*/
|
|
2716
2728
|
filterProperty?: string | PropertyBindingInfo;
|
|
2717
2729
|
|
|
@@ -2785,14 +2797,16 @@ declare module "sap/ui/table/Column" {
|
|
|
2785
2797
|
name?: string | PropertyBindingInfo;
|
|
2786
2798
|
|
|
2787
2799
|
/**
|
|
2788
|
-
* Defines if the filter menu entry is displayed
|
|
2800
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2801
|
+
* is set.
|
|
2789
2802
|
*
|
|
2790
2803
|
* @since 1.13.0
|
|
2791
2804
|
*/
|
|
2792
2805
|
showFilterMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2793
2806
|
|
|
2794
2807
|
/**
|
|
2795
|
-
* Defines if the sort menu entries are displayed
|
|
2808
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2809
|
+
* is set.
|
|
2796
2810
|
*
|
|
2797
2811
|
* @since 1.13.0
|
|
2798
2812
|
*/
|
|
@@ -2834,17 +2848,22 @@ declare module "sap/ui/table/Column" {
|
|
|
2834
2848
|
multiLabels?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
2835
2849
|
|
|
2836
2850
|
/**
|
|
2837
|
-
* Template (cell renderer) of this column.
|
|
2838
|
-
*
|
|
2839
|
-
*
|
|
2840
|
-
*
|
|
2841
|
-
*
|
|
2842
|
-
* is
|
|
2851
|
+
* Template (cell renderer) of this column.
|
|
2852
|
+
*
|
|
2853
|
+
* A template is decoupled from the column. Each time the template's properties or aggregations have been
|
|
2854
|
+
* changed, the template has to be applied again via `setTemplate` for the changes to take effect.
|
|
2855
|
+
*
|
|
2856
|
+
* If there is no template, the column will not be rendered in the table.
|
|
2857
|
+
*
|
|
2858
|
+
* The set of supported controls is limited. See section "{@link https://ui5.sap.com/#/topic/148892ff9aea4a18b912829791e38f3e Tables: Which One Should I Choose?}"
|
|
2843
2859
|
* in the documentation for more details. While it is technically possible to also use other controls, doing
|
|
2844
2860
|
* so might lead to issues with regards to scrolling, alignment, condensed mode, screen reader support,
|
|
2845
2861
|
* and keyboard support.
|
|
2846
2862
|
*
|
|
2847
|
-
*
|
|
2863
|
+
* If a string is defined, this string is interpreted as the binding path. Internally, a default text control
|
|
2864
|
+
* will be created with its `text` property bound to the value of the string. The default template depends
|
|
2865
|
+
* on the libraries loaded. **Note:** The `altType` string is deprecated as of version 1.118. Use a `Control`
|
|
2866
|
+
* instead.
|
|
2848
2867
|
*/
|
|
2849
2868
|
template?: string | Control | PropertyBindingInfo;
|
|
2850
2869
|
|
|
@@ -5063,6 +5082,18 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5063
5082
|
* @returns Value of property `fixedTopRowCount`
|
|
5064
5083
|
*/
|
|
5065
5084
|
getFixedTopRowCount(): int;
|
|
5085
|
+
/**
|
|
5086
|
+
* Gets current value of property {@link #getMaxRowCount maxRowCount}.
|
|
5087
|
+
*
|
|
5088
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5089
|
+
* height of the device.
|
|
5090
|
+
*
|
|
5091
|
+
* Default value is `-1`.
|
|
5092
|
+
*
|
|
5093
|
+
*
|
|
5094
|
+
* @returns Value of property `maxRowCount`
|
|
5095
|
+
*/
|
|
5096
|
+
getMaxRowCount(): int;
|
|
5066
5097
|
/**
|
|
5067
5098
|
* Gets current value of property {@link #getMinRowCount minRowCount}.
|
|
5068
5099
|
*
|
|
@@ -5138,6 +5169,25 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5138
5169
|
*/
|
|
5139
5170
|
iFixedTopRowCount?: int
|
|
5140
5171
|
): this;
|
|
5172
|
+
/**
|
|
5173
|
+
* Sets a new value for property {@link #getMaxRowCount maxRowCount}.
|
|
5174
|
+
*
|
|
5175
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5176
|
+
* height of the device.
|
|
5177
|
+
*
|
|
5178
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5179
|
+
*
|
|
5180
|
+
* Default value is `-1`.
|
|
5181
|
+
*
|
|
5182
|
+
*
|
|
5183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5184
|
+
*/
|
|
5185
|
+
setMaxRowCount(
|
|
5186
|
+
/**
|
|
5187
|
+
* New value for property `maxRowCount`
|
|
5188
|
+
*/
|
|
5189
|
+
iMaxRowCount?: int
|
|
5190
|
+
): this;
|
|
5141
5191
|
/**
|
|
5142
5192
|
* Sets a new value for property {@link #getMinRowCount minRowCount}.
|
|
5143
5193
|
*
|
|
@@ -5211,6 +5261,12 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5211
5261
|
*/
|
|
5212
5262
|
minRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
5213
5263
|
|
|
5264
|
+
/**
|
|
5265
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5266
|
+
* height of the device.
|
|
5267
|
+
*/
|
|
5268
|
+
maxRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
5269
|
+
|
|
5214
5270
|
/**
|
|
5215
5271
|
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
5216
5272
|
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
@@ -7919,6 +7975,31 @@ declare module "sap/ui/table/Table" {
|
|
|
7919
7975
|
* changes to take effect.
|
|
7920
7976
|
*/
|
|
7921
7977
|
getRowSettingsTemplate(): RowSettings;
|
|
7978
|
+
/**
|
|
7979
|
+
* Gets current value of property {@link #getScrollThreshold scrollThreshold}.
|
|
7980
|
+
*
|
|
7981
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
7982
|
+
* vertically in the table. The `scrollThreshold` is always added to the number of rows. If the number of
|
|
7983
|
+
* rows is 10 and the `scrollThreshold` is 100, 110 records will be fetched during scrolling. The threshold
|
|
7984
|
+
* that is applied to requests that are not initiated by scrolling can be configured with the `threshold`
|
|
7985
|
+
* property. If the `scrollThreshold` is lower than the number of rows in the scrollable area (number of
|
|
7986
|
+
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
7987
|
+
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
7988
|
+
*
|
|
7989
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
7990
|
+
*
|
|
7991
|
+
* The value of the `scrollThreshold` should be higher than the `threshold` value to avoid unnecessary requests.
|
|
7992
|
+
*
|
|
7993
|
+
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
7994
|
+
* property to take effect.
|
|
7995
|
+
*
|
|
7996
|
+
* Default value is `-1`.
|
|
7997
|
+
*
|
|
7998
|
+
* @since 1.128
|
|
7999
|
+
*
|
|
8000
|
+
* @returns Value of property `scrollThreshold`
|
|
8001
|
+
*/
|
|
8002
|
+
getScrollThreshold(): int;
|
|
7922
8003
|
/**
|
|
7923
8004
|
* Retrieves the lead selection index.
|
|
7924
8005
|
*
|
|
@@ -8023,10 +8104,12 @@ declare module "sap/ui/table/Table" {
|
|
|
8023
8104
|
* Gets current value of property {@link #getThreshold threshold}.
|
|
8024
8105
|
*
|
|
8025
8106
|
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
8026
|
-
* enable smooth scrolling. The threshold is always added to the
|
|
8027
|
-
*
|
|
8028
|
-
*
|
|
8029
|
-
*
|
|
8107
|
+
* enable smooth scrolling. The threshold is always added to the number of rows. If the number of rows is
|
|
8108
|
+
* 10 and the `threshold` is 100, 110 records will be fetched with the initial load. This property affects
|
|
8109
|
+
* requests triggered by changes in the binding, for example, initial loading, sorting, filtering, etc.
|
|
8110
|
+
* The threshold that is applied during scrolling can be configured with the `scrollThreshold` property.
|
|
8111
|
+
* If the `threshold` is lower than the number of rows in the scrollable area (`visibleRowCount` minus number
|
|
8112
|
+
* of fixed rows), this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
8030
8113
|
*
|
|
8031
8114
|
* Default value is `100`.
|
|
8032
8115
|
*
|
|
@@ -8884,6 +8967,19 @@ declare module "sap/ui/table/Table" {
|
|
|
8884
8967
|
*/
|
|
8885
8968
|
oRowSettingsTemplate: RowSettings
|
|
8886
8969
|
): this;
|
|
8970
|
+
/**
|
|
8971
|
+
* Sets the threshold value, which will be added to all data requests initiated by scrolling if the `Table`
|
|
8972
|
+
* is bound against an OData service.
|
|
8973
|
+
*
|
|
8974
|
+
*
|
|
8975
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8976
|
+
*/
|
|
8977
|
+
setScrollThreshold(
|
|
8978
|
+
/**
|
|
8979
|
+
* The threshold for scrolling
|
|
8980
|
+
*/
|
|
8981
|
+
iThreshold: int
|
|
8982
|
+
): this;
|
|
8887
8983
|
/**
|
|
8888
8984
|
* Sets the selected index. The previous selection is removed.
|
|
8889
8985
|
*
|
|
@@ -9295,13 +9391,35 @@ declare module "sap/ui/table/Table" {
|
|
|
9295
9391
|
|
|
9296
9392
|
/**
|
|
9297
9393
|
* Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
|
|
9298
|
-
* enable smooth scrolling. The threshold is always added to the
|
|
9299
|
-
*
|
|
9300
|
-
*
|
|
9301
|
-
*
|
|
9394
|
+
* enable smooth scrolling. The threshold is always added to the number of rows. If the number of rows is
|
|
9395
|
+
* 10 and the `threshold` is 100, 110 records will be fetched with the initial load. This property affects
|
|
9396
|
+
* requests triggered by changes in the binding, for example, initial loading, sorting, filtering, etc.
|
|
9397
|
+
* The threshold that is applied during scrolling can be configured with the `scrollThreshold` property.
|
|
9398
|
+
* If the `threshold` is lower than the number of rows in the scrollable area (`visibleRowCount` minus number
|
|
9399
|
+
* of fixed rows), this number is used as the `threshold`. If the value is 0, thresholding is disabled.
|
|
9302
9400
|
*/
|
|
9303
9401
|
threshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
9304
9402
|
|
|
9403
|
+
/**
|
|
9404
|
+
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
9405
|
+
* vertically in the table. The `scrollThreshold` is always added to the number of rows. If the number of
|
|
9406
|
+
* rows is 10 and the `scrollThreshold` is 100, 110 records will be fetched during scrolling. The threshold
|
|
9407
|
+
* that is applied to requests that are not initiated by scrolling can be configured with the `threshold`
|
|
9408
|
+
* property. If the `scrollThreshold` is lower than the number of rows in the scrollable area (number of
|
|
9409
|
+
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
9410
|
+
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
9411
|
+
*
|
|
9412
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
9413
|
+
*
|
|
9414
|
+
* The value of the `scrollThreshold` should be higher than the `threshold` value to avoid unnecessary requests.
|
|
9415
|
+
*
|
|
9416
|
+
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
9417
|
+
* property to take effect.
|
|
9418
|
+
*
|
|
9419
|
+
* @since 1.128
|
|
9420
|
+
*/
|
|
9421
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
9422
|
+
|
|
9305
9423
|
/**
|
|
9306
9424
|
* Flag to enable or disable column reordering
|
|
9307
9425
|
*
|