@wavemaker/app-ng-runtime 12.0.0-next.141179 → 12.0.0-next.141186

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.
@@ -63,6 +63,7 @@
63
63
  ['insertmessage', { value: 'Record added successfully', ...i4.PROP_STRING }],
64
64
  ['isdynamictable', i4.PROP_BOOLEAN], // internal property to determine dynamic table
65
65
  ['isrowexpansionenabled', i4.PROP_BOOLEAN],
66
+ ['isrowselectable', { value: false, ...i4.PROP_BOOLEAN }],
66
67
  ['loadingdatamsg', { value: 'Loading...', ...i4.PROP_STRING }],
67
68
  ['loadingicon', { value: 'fa fa-circle-o-notch fa-spin', ...i4.PROP_STRING }],
68
69
  ['maxsize', { value: 5, ...i4.PROP_NUMBER }],
@@ -394,6 +395,7 @@
394
395
  },
395
396
  filtermode: '',
396
397
  filteronkeypress: false,
398
+ isrowselectable: false,
397
399
  searchLabel: '',
398
400
  rowActions: [],
399
401
  headerConfig: [],
@@ -1092,7 +1094,8 @@
1092
1094
  showheader: 'showHeader',
1093
1095
  enablecolumnselection: 'enableColumnSelection',
1094
1096
  shownewrow: 'showNewRow',
1095
- gridfirstrowselect: 'selectFirstRow'
1097
+ gridfirstrowselect: 'selectFirstRow',
1098
+ isrowselectable: 'isrowselectable'
1096
1099
  };
1097
1100
  if (this._liveTableParent) {
1098
1101
  this.isPartOfLiveGrid = true;
@@ -1118,6 +1121,7 @@
1118
1121
  this.gridOptions.formPosition = this.formposition;
1119
1122
  this.gridOptions.filtermode = this.filtermode;
1120
1123
  this.gridOptions.filteronkeypress = this.filteronkeypress;
1124
+ this.gridOptions.isrowselectable = this.isrowselectable;
1121
1125
  this.gridOptions.searchLabel = this.searchlabel;
1122
1126
  this.gridOptions.isMobile = i2.isMobile();
1123
1127
  this.gridOptions.name = this.name;