Posts by Juan Biscaia • 341 points
7 posts
-
1
votes1
answer947
viewsA: Angular form Ubmit
You have 2 problems, and are in your html: ng-submit="Submit()" on the tag <form>, but your form does not have a button type="submit" (the attributes type and input do not exist in tags…
-
1
votes1
answer520
viewsA: Angularjs, How to create Checkbox to insert array in Mongodb
I made a basic spa showing how you can use a function in the ng-click of each input checkbox to add or remove items from your generos array. This app has a difference, instead of adding strings in…
-
2
votes1
answer126
viewsA: Problems $Scope mdDialog Angularjs
Yes, they are connected, it is an Angularjs Feature, it is the root of the way it works, the MVVM. If you want to make modifications to your array within the scope of the Md-dialog and if this array…
-
2
votes2
answers293
viewsA: Change System Logo
Mixing Angularjs with jQuery within your controller is never a good idea, because the two are frameworks with different purposes. jQuery is for DOM manipulation and Angularjs is for DOM-influenced…
-
1
votes1
answer111
viewsA: To create a new empty list by clicking on "new list"
If I understand your problem, unintentionally, you bumped into one of the most interesting features of Angularjs: A capacidade de manter um escopo bindado mesmo quando você muda ele de lugar. The…
angularjsanswered Juan Biscaia 341 -
5
votes1
answer1435
viewsA: Load menu after login with Angularjs
Actually ng-view is not allowed twice on the same page. But to solve this is not difficult, all you need to do is use a module that was developed exactly for this type of situation, medium/large…
angularjsanswered Juan Biscaia 341 -
3
votes2
answers446
viewsA: Javascript on iOS: Avoid click events by scrolling iPhone/iPad
I made a functional example in jsFiddle, also put comments that help understand logic . http://jsfiddle.net/M4gQG/1/ Remembering that on the desktop works with double click and on mobile devices in…