Posts by edCosta • 36 points
5 posts
-
0
votes1
answer101
viewsA: Upload files to Asp.NET MVC 4 - Web API - Http Put Method
If I understand correctly, you want to receive the files in the controller without needing a model for each type (xml, json) ? Have you tried using the Dynamic type in the controller parameters ?…
-
0
votes3
answers2288
viewsA: How do I open a floating div tooltip style by clicking an input?
In the script, you can switch to other events like Hover, etc... Css: .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family:…
-
1
votes2
answers2464
viewsA: ASP . NET MVC and Javascript - Open modal with ID of the selected object in a list
Replying to the supplementary part How you use parameters in Actionresult Details (modal), then the right one to pass would be $("#modal").load("Detalhes/" + id, function () { $("#modal").modal();…
-
1
votes1
answer869
viewsA: Pass an object to Modal
On the page where you want to call the modal, just leave the initial modal tag <div class="modal" id="abrir"></div> Ja na Partialview _Detailsput all the rest of the modal code <div…
-
0
votes0
answers957
viewsQ: At the time of printing, blank pages are added
At the time of printing my page, being added blank pages, the number of these pages is relative, sometimes 1, 2... I’ve tried solutions like: .print:last-child { page-break-after: auto; } html, body…