Posts by Marco Antonio Quintal • 2,227 points
54 posts
-
1
votes1
answer86
viewsA: how to get an id of a model in a view via a link?
Use @Html.HiddenFor(c=>c.Id) inside the Form. So it will be sent to the Controller.
-
2
votes1
answer103
viewsA: How to turn off Visual Studio 2013 Intellisense for Text Plan only?
clear Statement Completion to Plain Text. The file extension is txt?
-
2
votes1
answer245
viewsA: Printing reports in Firefox using Telerik Reporting
Telerik Reporting does not work in some versions of Firefox because it uses pdf.js. See the ticket https://bugzilla.mozilla.org/show_bug.cgi?id=843342 As an outline solution have it exported to pdf.…
-
2
votes1
answer1734
viewsA: How to return dynamic list?
In your example you are not passing the list as a model but the view bag. It is also not allowed to pass an anonymous class as a model to the view. Create a view model and use it in the Thumbnail…