Posts by lenilsondc • 276 points
5 posts
-
1
votes1
answer865
viewsA: Access methods through a parent component in a child with Angular 1
What you can do is simply pass a property from the parent component to the attribute name. Therefore, by changing the value of this property in the parent component, the process of Binding of…
-
2
votes1
answer1043
viewsA: Database Request API For Angularjs
Basically you could use any API you wanted to work with Angularjs, it makes no difference what technology you will use on the server side because in the end it is a Webservice that transmits only…
-
1
votes1
answer433
viewsA: JQUERY functions with named callbacks
You can use one argument only, options, and start to declare the functions within the object passed by parameter. For example: var myFunction = function(options){ ... if(...){…
-
2
votes1
answer1115
viewsA: Input loading data from Modal
My proposal is an example of how you can implement this with jQuery features. First, the fields that will store and fire the "Picker product". <td> <input type="text" id="myProductInput"…
-
4
votes1
answer2419
viewsA: Close menu by clicking outside with javascript
Well, to capture the click off of the menu you have already discovered. So, just skip the click inside the menu. You can take the following approach. document.documentElement.onclick =…
javascriptanswered lenilsondc 276