Perfect, thanks!
Posts made by ixdi
-
jsreportonline SSL certificate will be distrusted in Chrome 66
Hi,
We had this advice in Chrome.
"The SSL certificate used to load resources from https://myservice.jsreportonline.net will be distrusted in M66. Once distrusted, users will be prevented from loading these resources. See https://g.co/chrome/symantecpkicerts for more information."
We imagine that the jsreportonline developers know about it, but just in case. We, and sure many others, have a service that use jsreportonline.
Thanks
-
Images fail at load
Hi,
We are using the jsreport online payment service for our product. We have found a failure when inserting an image in the header. We want to choose the image according to the data we send to the server.
Our code inside the template header is
{{#if (getval usrHeader)}} <img src="{{getpichdr usrHeader}}" class="header-img" style="width:100px;" /> {{/if}}
and the template helper functions are,
function getval(val) { return (val) ? true : false; } function getpichdr(val) { return (val) ? '{#image ' + val + '}' : '{#image nopic}'; }
We have the images loaded in images.
Should it be done in another way? The images do not appear but we have checked and the 'if' condition is passed correctly. The value of the variable with the name of the image is also correct.
Thanks