ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Webauthor on March 09, 2022, 03:46:20 am
-
Hi, I have an issue where a column with HTML renders just fine in the grid, but when exporting to excel, even with render:true, it only shows the HTML tags. I took one of your demo examples and created a fiddle to show the behavior:
https://jsfiddle.net/webauthor/c30seLq8/3/
In the dataModel for company, I have one entry with a <ul> list. It renders correctly in the grid, but not when exported via Excel. I've tried playing with various options like render:true/false, exportRender:true/false on the column, but none worked.
Can you please help me export this while retaining the HTML - or if this is not possible, is there a way to strip the HTML tags before export?
Thank you
-
Html tags can't be meaningfully rendered in Excel.
They can be removed from intermediate js workbook before exporting it to Excel.
pq.excel.eachCell(w.sheets, function(cell){
var val = cell.value;
if(typeof val == "string" && val.indexOf("<") != -1){
var $p = $("<p>").html(val);
cell.value = $p.text();
}
})
https://jsfiddle.net/2rcL9jp5/
-
Thank you very much. This worked perfectly.