@refinitiv-ui/efx-grid 6.0.121 → 6.0.122

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -69,5 +69,5 @@
69
69
  "publishConfig": {
70
70
  "access": "public"
71
71
  },
72
- "version": "6.0.121"
72
+ "version": "6.0.122"
73
73
  }