drag-and-drop-placeholders-into-PDF
drag-and-drop-placeholders-into-PDF copied to clipboard
Placeholders not updating.
Hello @ValerioEmanuele , I have checked you codepen demo and here is the result coordinates of a same placeholder put at 4 different locations: top left posizioneX:19.873524451939318 posizioneY:813.95
top right posizioneX:19.873524451939318 posizioneY:813.95
bottom left posizioneX:19.873524451939318 posizioneY:813.95
bottom right posizioneX:19.873524451939318 posizioneY:813.95
Could you please have a look into this. Values are updating only on page refresh.
Hi Abdul,
Please update these two lines in showCoordinates() method Not working: var x = parseFloat($(this).data("x")); var y = parseFloat($(this).data("y"));
Working: var x = parseFloat($(this).attr("data-x")); var y = parseFloat($(this).attr("data-y"));
hope this will work.
How do i use the coordinate return to render inputs on pdf with TCPDF or even css?