41
Help for ParamQuery Pro / Re: Issue with Decimal Value Paste from Excel in pqGrid v11
« Last post by paramvir on April 16, 2026, 11:07:55 am »Thanks for sharing stackblitz.
i've added the following fix in pqgrid.jsx to accept copy-paste of numbers from Excel
Final stackblitz:
https://stackblitz.com/edit/vitejs-vite-5akectub?file=index.html,src%2Fmain.jsx,src%2Fpqgrid.jsx
Please let me know if you need further assistance
i've added the following fix in pqgrid.jsx to accept copy-paste of numbers from Excel
Code: [Select]
const _isDateFormat = pq.isDateFormat;
pq.isDateFormat = function (fmt) {
return fmt == 'Standard' ? false : _isDateFormat.call(this, fmt);
};
Final stackblitz:
https://stackblitz.com/edit/vitejs-vite-5akectub?file=index.html,src%2Fmain.jsx,src%2Fpqgrid.jsx
Please let me know if you need further assistance

Recent Posts