Good evening, I'm having trouble making the login screen in my application
Index.html
<body>
<div ng-include"'dashboard.html'"></div>
<div ng-view></div>
</body>
If I put the form of login insid...
Good evening
I have a mobile app, I have seen in some apps that when I click on share it appears the options of the installed apps like facebook on the phone to share would like to know how I can trigger these options to do sharing for exampl...
I need to change the alerts template for my web system. For this I am using a JQuery plugin, however, I need to pass a parameter to my JQuery function as this would be my model that is already being used in AngularJS.
In this function when cl...
I have already swept the internet for a solution, but in no way does the angular work on my project. In the project in which I want to use it I have existed many javascript imports I do not know if this might be the problem, but below I illust...
I have a page that displays several divs that when clicked retrieves and displays the attributes used to create them: float , border , width , and so on.
I'd like to recover classname , but I'm not getting it....
I have an angled factory that returns json data. Within a controller I invoke the same to get the data, the point is that invoking the same inside the controller object exists only to use a console.log , if you assign it to a varia...
My AngularJS page displays a table with data coming from a JSON. What I want is for the table to be updated from time to time because the data is updated second by second and I display only the last 10.
<tr ng-repeat="linha in linhas">...
I have the following "broadcast" inside a "directive":
console.log('a emitir...');
$rootScope.$broadcast('olamundo', params);
In my controller I have the following code:
$scope.$on('olamundo', function (event, args) {
console.log('a e...
In the system that I'm developing, it will have a input field for the user to search if such a CPF already exists registered in the Database, if I have I want to show all the data of that client in an already completed form
This is t...