ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: juroinstruments on October 05, 2021, 11:38:18 am
-
Hi.
I'm struggling with developing method for manipulating excel import using paramquery.
When importing excel data, it may have cells to be rendered or to be replaced with a map of other data.
so I want to engage with an event when importing excel.
is there any appropriate events for it?
-
import of Excel can be separated into 2 steps:
Import xlsx -> js workbook -> import into grid.
//import xlsx file into workbook.
pq.excel.importXl( {file: file}, function( wb ){
//import workbook into grid.
grid.importWb({workbook: wb, extraRows: 10, extraCols: 10});
grid.hideLoading();
})
https://paramquery.com/pro/demos/import-xlsx
Example of structure of js workbook: https://paramquery.com/pro/demos/js-workbook
You can make data changes in the js workbook.