@cdmx/wappler_ag_grid 0.9.9 → 1.0.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/dmx-ag-grid.js +0 -2
- package/package.json +1 -1
package/dmx-ag-grid.js
CHANGED
|
@@ -189,7 +189,6 @@ dmx.Component('ag-grid', {
|
|
|
189
189
|
const idValue = this.$node.querySelector('dmx-ag-grid > div')?.getAttribute('id') ?? 'Grid not found';
|
|
190
190
|
const currentPageUrl = window.location.origin + window.location.pathname;
|
|
191
191
|
const uniqueId = `${currentPageUrl}_${idValue}`;
|
|
192
|
-
console.log(uniqueId)
|
|
193
192
|
localStorage.removeItem(`columnState_${uniqueId}`);
|
|
194
193
|
let gridInstance = this.refreshGrid();
|
|
195
194
|
this.set('gridInstance', gridInstance);
|
|
@@ -199,7 +198,6 @@ dmx.Component('ag-grid', {
|
|
|
199
198
|
pinColumnToLeft(fieldId);
|
|
200
199
|
},
|
|
201
200
|
hideColumns: function (fieldId) {
|
|
202
|
-
console.log(fieldId)
|
|
203
201
|
hideColumn(fieldId);
|
|
204
202
|
},
|
|
205
203
|
importFileData: async function (fieldId) {
|