I have an Problem with the PDF creation. I customized it a bit like described in the documentation and it worked fine. But suddenly It stopped working. Now even after deleting the customization and all of the code it wont work. The error only occurs for this list. Every time I try to start the PDF Export I get the following error:
actually I was able to track down the error now. But it doesnt make sense that it worked for a while and suddenly stopped working. The error occurs when there is a picture column in the form! When a I delete the picture fields the export works fine. Maybe a Bug on your side?
I’ve reproduced the issue, it’s definitely a bug. We’ll analyze the issue more closely, but now, as a workaround, you can use this code on Display form to avoid the error:
fd.spRendered(function() {
var img = $(fd.field("Picture").$el).find('img');
if (img.attr('src') == "http://") {
img.remove()
}
})