@refinitiv-ui/efx-grid 6.0.121 → 6.0.122
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.
@@ -286,7 +286,7 @@ RowDefinition.prototype.initialize = function(rowOptions) {
|
|
286
286
|
this._asSegment = val ? true : false;
|
287
287
|
}
|
288
288
|
|
289
|
-
if(this._isChain) {
|
289
|
+
if(this._isChain || this._asSegment) {
|
290
290
|
this._collapsed = extractedOptions["collapsed"]; // Temporary state
|
291
291
|
}
|
292
292
|
|
@@ -1424,6 +1424,7 @@ RowDefinition.extractRowOptions = function(rowOptions) {
|
|
1424
1424
|
let permId = rowOptions["permId"];
|
1425
1425
|
let chainRic = rowOptions["chainRic"];
|
1426
1426
|
let collapsed = rowOptions["collapsed"];
|
1427
|
+
let asSegment = rowOptions["asSegment"];
|
1427
1428
|
let asChain = rowOptions["asChain"];
|
1428
1429
|
if(asChain == null && chainRic){
|
1429
1430
|
asChain = true;
|
@@ -1436,6 +1437,8 @@ RowDefinition.extractRowOptions = function(rowOptions) {
|
|
1436
1437
|
expanded = true;
|
1437
1438
|
} else if(asChain) {
|
1438
1439
|
expanded = false;
|
1440
|
+
} else if(asSegment) {
|
1441
|
+
expanded = true;
|
1439
1442
|
}
|
1440
1443
|
|
1441
1444
|
let extractedOptions = {};
|
package/package.json
CHANGED