31
Bug Report / Re: New row comit and pq_detail column
« Last post by MichalV on March 25, 2025, 11:10:49 pm »Yes, when I remove the pq_detail column (column with type: "detail") the commit works well after adding new row.
create: function () {
//this.loadState({ refresh: false })
customLoadState(this, "isim1");
},
function customSaveState(grid, key) {
function simplifyColModel(colModel) {
return colModel.map(col => {
const simplified = {
dataIndx: col.dataIndx
};
if (col.width != null) simplified.width = col.width;
if (col.hidden != null) simplified.hidden = col.hidden;
if (col.colModel) simplified.colModel = simplifyColModel(col.colModel);
return simplified;
});
}
const simpleState = simplifyColModel(grid.option("colModel"));
const state=JSON.stringify(simpleState);
localStorage.setItem(key, state);
console.log("Custom state saved to localStorage under key:", key);
}
function customLoadState(grid, key) {
const saved = localStorage.getItem(key);
if (!saved) {
console.warn("No saved state found for key:", key);
return;
}
function reorderAndMerge(savedModel = [], originalModel = []) {
const originalMap = {};
originalModel.forEach(orig => {
originalMap[orig.dataIndx] = orig;
});
const handled = new Set();
const result = [];
// savedModel
for (const saved of savedModel) {
const orig = originalMap[saved.dataIndx];
if (!orig) continue;
const merged = { ...orig };
if (saved.width != null) merged.width = saved.width;
if (saved.hidden != null) merged.hidden = saved.hidden;
// nested colModel
if (saved.colModel && orig.colModel) {
merged.colModel = reorderAndMerge(saved.colModel, orig.colModel);
}
result.push(merged);
handled.add(saved.dataIndx);
}
// savedModel newColumn
for (const orig of originalModel) {
if (handled.has(orig.dataIndx)) continue;
const merged = { ...orig };
if (orig.colModel) {
merged.colModel = reorderAndMerge([], orig.colModel);
}
result.push(merged);
}
return result;
}
const savedCols = JSON.parse(localStorage.getItem("isim1") || "[]");
const currentCols = grid.option("colModel");
const updated = reorderAndMerge(savedCols, currentCols);
console.log(currentCols);
grid.option("colModel", updated);
grid.refreshCM();
//grid.refresh();
console.log("Custom state loaded from localStorage:", key);
}
jQuery.paramquery.pqGrid.prototype.loadState=function(e){e=e||{};var t,o=this,r=$.widget.extend,d=e.state||o.getState();if(!d)return!1;pq.isStr(d)&&(d=JSON.parse(d));var a,l=d.colModel,i="pid"+Math.random(),n={},s={},p={},h=o.options,M=e=>e.dataIndx||e.id||e.title,c=(delete(a=h.stateColKeys).colModel,delete a.dataIndx,a),f=h.colModel,u=(e,t,o,r)=>{var d=o[t]={};e.forEach(((e,a)=>{var l=M(e);e.parentId=t,r[l]=e,d[l]=a,e.colModel&&u(e.colModel,l,o,r)}))};for(var g in u(l,i,s,n),p[i]={colModel:f},u(f,i,{},p),p){var v=n[g],N=p[g];if(v){if(N.parentId!=v.parentId){var w=p[N.parentId],I=p[v.parentId];I&&(w.colModel.splice(w.colModel.indexOf(N),1),I.colModel.push(N))}o._saveState(v,N,c)}}return function e(t,o){var r=s[o];r&&t.sort((function(e,t){return r[M(e)]-r[M(t)]})),t.forEach((t=>{delete t.parentId;var o=t.colModel||[];o.length&&e(o,M(t))}))}(f,i),o.iCols.init(),r(h.sortModel,d.sortModel),r(h.pageModel,d.pageModel),o.Group().option(d.groupModel,!1),o.Tree().option(d.treeModel,!1),t={freezeRows:d.freezeRows,freezeCols:d.freezeCols},isNaN(1*h.height)||isNaN(1*d.height)||(t.height=d.height),isNaN(1*h.width)||isNaN(1*d.width)||(t.width=d.width),o.option(t),!1!==e.refresh&&o.refreshDataAndView(),!0};