Posts by José Furtado • 43 points
3 posts
-
1
votes1
answer198
viewsQ: Generate Pdf via ajax.POST with Rotary
I want to generate a. pdf file using Rotary, my ajax call is as follows: $.ajax({ type: "POST", url: "Home/Index", data: { nome: inputName, laudos: laudos, imagem: imgSelecionada }, }); And the code…
-
2
votes0
answers487
viewsQ: Render Image with Rotary Pdf (Asp.net Mvc)
I have an Action responsible for generating the pdf using Rotary... The action code is as follows:: public ActionResult PDFPadrao() { string header = Server.MapPath("~/Views/Relatorio/Header.html");…
-
1
votes2
answers110
viewsQ: Given a select, how to store in an array (using pure Javascript) the value of all selected options?
The example for select can be the same.. <form> <select id="mySelect" size="4" multiple> <option>Apple</option> <option>Orange</option>…