Posts by Junior S. • 98 points
8 posts
-
0
votes0
answers16
viewsQ: Problem renaming Bundle files
I changed the Bundle names of my application, but when I run it again, it tries to access the same path with the old Bundle names. For example, before the name of Bundle was…
-
2
votes1
answer589
viewsA: Shortcut to format JSP code does not work in Eclipse
Man, it’s been a while since I’ve used the eclipse, but I believe it’s with this command here: Ctrl+To+I
-
1
votes3
answers3208
viewsA: Perform two functions with onclick
Dude, if I get it right, you’re gonna hide one and show the other at the same time. So you can put it all in one function. It would look like this: function mostrar (){…
javascriptanswered Junior S. 98 -
1
votes0
answers106
viewsQ: Aggregate with Sort - Mongodb
I have a query in Mongodb, I do Aggregate to count how many items there are in each category, everything works well, however I can’t sort the data, that would be ordered by the Title field. Follow…
-
2
votes3
answers4226
viewsA: Persist information using Viewbag?
Controller C#: ViewBag.Nome = "Jr"; Html: @ViewBag.Nome…
-
0
votes2
answers97
viewsA: Tag HTML in Helper Razor
Man, you just do it like this: <em> @Html.Label("Nº Compra:", new {@class = "labelinput"}) </em>…
-
1
votes1
answer414
viewsA: Form validation ASP.net mvc!
Any control of the page that is of type "Submit", will go through the validations. What you can do is change your redirect button, to a href, and just leave each other as "Submit", redirecting by…
-
1
votes1
answer220
viewsQ: Carrregar view table with JSON object
I have the following code in my controller: public JsonResult List(string nome){ IList<ClienteDto> clientes = string.IsNullOrEmpty(nome) ? _repositoryCliente.Get() :…