@wavemaker/app-ng-runtime 11.8.0-rc.5676 → 11.8.0-rc.5679
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.
- app-ng-runtime/components/base/bundles/index.umd.js +5 -11
- app-ng-runtime/components/base/esm2022/widgets/common/base/base.component.mjs +6 -12
- app-ng-runtime/components/base/fesm2022/index.mjs +5 -11
- app-ng-runtime/components/base/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/base/widgets/common/base/base.component.d.ts +1 -1
- app-ng-runtime/components/data/table/bundles/index.umd.js +3 -0
- app-ng-runtime/components/data/table/esm2022/table.component.mjs +4 -1
- app-ng-runtime/components/data/table/fesm2022/index.mjs +3 -0
- app-ng-runtime/components/data/table/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -1
app-ng-runtime/package.json
CHANGED
|
@@ -2725,7 +2725,7 @@ $.widget('wm.datatable', {
|
|
|
2725
2725
|
var colId = column.attr('data-col-id');
|
|
2726
2726
|
var id = Number(colId);
|
|
2727
2727
|
var colDefination = self.preparedHeaderData[id];
|
|
2728
|
-
if(colDefination.readonly) {
|
|
2728
|
+
if (colDefination.readonly && colDefination.field !== 'rowOperations') {
|
|
2729
2729
|
self.columnClickInfo[rowId] = {};
|
|
2730
2730
|
self.columnClickInfo[rowId][colId] = true;
|
|
2731
2731
|
}
|