ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: lhscj2466 on March 21, 2023, 06:18:57 am
-
hello.
We are currently testing the download of Excel.
I want to receive and download the image of the grid when downloading Excel.
However, it is stated that only pic is used in the past, and I cannot see a suitable example.
Please make a simple example code.
It is difficult to understand with only api because of lack of understanding of javascript and pqgrid yet.
The attached image is the screen I am currently working on, and it is processed to show the image in a specific cell.
I am trying to implement both excel upload and download in this form.
thank you
-
Please check this example with ability to upload pictures via toolbar button to grid / spreadsheet and download the image as part of spreadsheet in xlsx format: https://paramquery.com/pro/demos/import_xlsx_tabs
{
type: 'file',
icon: 'ui-icon-image',
attr: "title='Add image'",
style: 'margin-right:0;margin-left:1px;',
attrFile: 'accept=".jpg,.jpeg,.png,.gif"',
listener: function (evt) {
var files = evt.target.files;//doesn't work in IE9.
if (files[0]) {
this.Selection().pic(files[0], 5, 5);
}
}
},