Posts by MuriloMittmann • 314 points
9 posts
-
3
votes5
answers3991
viewsA: Update list after push Angularjs
Whoa, try to use $scope.$digest() to update your bindings and your Watchers
-
0
votes2
answers312
viewsA: Popular Graphics with List - Java Script
Hello, Dude, first tip: Don’t mix your Model values with your Javascript code. What can be done in this case is to create a new Action that returns a Json with information needed to populate this…
-
4
votes3
answers3658
viewsA: Add Values in Angularjs
The statement of the other answer is true and works, but as an alternative, if you want to put the value in the total property, a self-executable function can be used, such as: $scope.total =…
-
0
votes3
answers698
viewsA: In OOP, what are the differences between Afferent Coupling and Efferent Coupling?
Opa! Basically the difference is in the point of view in relation to the class to which this analysis will be made. Explain: Let’s take as an example the class "Example" Efferent coupling: Let’s say…
-
1
votes2
answers1182
viewsA: How to remove mask from the field before calling the controller with Asp net MVC
Whoa, what’s up, man? A valid alternative is for you to put the input for your model as Hidden type: @Html.HiddenFor(model => model.Cnpj) And then change the value of this field when filling in…
-
4
votes1
answer934
viewsA: ASP.NET MVC vs Angularjs with WEBAPI
Whoa, what’s up, man? This is a very abstract question, but I think this link can help you:…
-
0
votes1
answer435
viewsA: google Graphical software
Whoa, whoa, what’s up? Dude, from what I’ve seen you just need to include an array of colors in your object "options": var options = {'title': 'valores', width: 1000, height: 680, colors:…
javascriptanswered MuriloMittmann 314 -
2
votes4
answers5546
viewsA: SQL query to get all records from last month but until the current day
Dude, only last month is exactly what you did, but you don’t need to subtract a year from the current day. What you’re asking for query is: I want all requests that had the closing date(Welding)…
-
2
votes1
answer404
viewsA: An image on two Ivs
I don’t know if this is exactly your need, but I did in this fiddle here a layout with the image in the center and that fits the size, not invading the other element. I put the element as position:…