Most voted "angularjs" questions
This tag should be used when the question refers to some resource, information or problem related to the Angularjs framework. If so, only about Angular, there is a specific tag for this. Angularjs is an open-source Javascript framework. Its purpose is to facilitate the creation of browser-based applications in the Model-View-Controller (MVC) model, reducing the amount of code needed to create functional web applications.
Learn more…2,494 questions
Sort by count of
-
1
votes1
answer215
viewsLoop with Angularjs data
I would like to make a frame with Angularjs data Populating of the data via json so: Example: date = ""01/01/2015" but, will be shown only the day The table is made with a loop <div…
-
1
votes0
answers51
viewsConcept - Dynamic web menu
I am idealizing a personal project and I am in doubt about best practices. For a WEB system with access control, which of the following options, in your opinion, is the most ideal? 1 - Assemble a…
-
1
votes1
answer1425
viewsDelete records in Firebase
I am developing a small chat using the Firebase. My intention was to do the login in my application and save the usuarioLogado in the database and by logoff delete this user from the database.…
-
1
votes0
answers151
viewsReturning daughter routes in an abstract view in Angular JS
I am making a directive to create a Wizzard system, where the navigation of this Wizzard will depend on the number of routes that is set on a parent route (Abstract). I need to know if there’s any…
-
1
votes1
answer43
viewsLoad database pages
How do I load database pages, so that Angularjs directives work? Currently, I am loading the pages with jQuery. The page loads perfectly. It turns out that when this occurs, the Angularjs boot cycle…
-
1
votes0
answers595
viewsSelect gallery image and send by post?
I am creating a register of new users and in this register the user must choose his profile image(required). I can return the image of the gallery but the name of the image does not return, the…
-
1
votes2
answers121
viewsSharepoint with Angular. Are we doing it right? What’s the best way to integrate?
Hello, Here in the company we have Sharepoint 2013 with Angular. I arrived after the project started. Good, Here they use the Web Parts to spit angular tags on the pages. And from there we have all…
-
1
votes0
answers509
viewsEncrypt JS/PHP GET parameter
What is the best way to traffic data between JS and PHP vie GET method? Imagine a $http request made on Angularjs passing ex parameters: minhaurl? id=2&name="Joao" The ideal would be to encrypt…
-
1
votes1
answer1474
viewsAngularjs take the $Scope and concatenate into a URL
app js. angular.module("FipeApp", []); angular.module("FipeApp").controller("FipeAppCtrl", function($scope, $http) { $scope.app = "FIPE APP"; $scope.tipos = [{ nome: "Carros", id: "carros" }, {…
-
1
votes1
answer268
viewsPanels in Angular
I would like to make a page in Angular that looks like the image below: which is nothing more than a page with multiple panels, which I will add a list of information within them... Which component…
-
1
votes1
answer600
viewsHandling of $http’s replay.get
Hello I’m looking for information in a local database with the following code: var app = angular.module('app',[]); app.controller('conexao',function($scope, $http){ $scope.names = [];…
-
1
votes1
answer707
viewsPass variable Angularjs through JS function
I have a dynamic modal in Jquery that is called with the onclick="ShowModal()" is working. However, I want to send values coming from Angularjs and cannot. It sends the code Angularjs…
-
1
votes1
answer35
viewsHow to register user with editable mode disabled using Angularjs and xeditable?
I wish the dice had already made a Rigger in "save", or something like that, at the time of including the user, it appear without being in edit mode. See my example on FIDDLE. How could I fix this?…
-
1
votes0
answers35
viewsLogin page in SPA’s (Angularjs)
In the current scenario, I have an index.html that works as a kind of template. For example, in it I have a side menu, a toolbar at the top and, at the "center", a div (ng-view) to receive dynamic…
-
1
votes2
answers401
viewsRequest problem with jQuery ($.ajax) and Angular ($http)
I am trying to get some data from an API in the fastest and most direct way. Using Postman I can easily get it just by giving a GET to the url (http://www.wsfebracis.com.br/Json/ListarGrupos), so I…
-
1
votes0
answers67
viewsSingle tooltip in 2 elements (one body and 2 arrows)
I don’t know if the native code of Bootstrap allows this for the tooltip or for the can. I have 2 links and I need to do something that is created a tooltip or a can that can join both links with 2…
-
1
votes1
answer412
viewsSpring and Jasper - Browser does not understand streaming for download
I have an app that uses Jasper-Reports version 6.2.0 with spring-mvc version 3.2.14, java-ee-7, Tomcat 8 and at front-end we use Angularjs. The requisitions Rest are made via ajax. Spring…
angularjs rest spring-mvc jasper-reports java-ee-7asked 8 years, 11 months ago Philippe Gioseffi 3,202 -
1
votes1
answer734
viewsSpring, Angular JS and Exception Handling in Service Layer
I have an app that uses Jasper-Reports version 6.2.0 with spring-mvc version 3.2.14, java-ee-7, Tomcat 8 and at front-end we use Angularjs. The requisitions Rest are made via ajax. The application…
-
1
votes1
answer56
viewsShared variables do not update after http request
I created a Service to share a variable with my entire application, but the value is not being updated: The service makes only one query on the server to return the number of pending users And I…
-
1
votes1
answer1362
viewsHow to display message in Angularjs?
I am working with angular and need to add a message on the screen when being prompted the check code button. An error or success message. Angular controller angular.module().controller(){…
-
1
votes1
answer491
viewsRun command only after the end of for - Javascript
I need to take the distance covered by a vehicle in the last 3 days and display on the chart. For this, I make a for and I calculate the distance traveled and saving in a array (arrayKmDayData):…
-
1
votes2
answers615
viewsJson filter in Angularjs
I would like how I can filter this JSON by COD and bring only the chosen one. I am bringing the value of the code by the url and would like to filter only to display the name of the chosen option.…
-
1
votes2
answers938
viewsPush in JSON Object Angularjs
How do I add 1 item to a json object in Angularjs. In case I have: {COD: 29, MOTIVO: "teste"} And I’d like you to stay: {COD: 29, MOTIVO: "teste", ID : 12345789} I tried it this way:…
-
1
votes1
answer46
viewsProblem with HTML content presentation using this.props.Children with ngReact
I’m trying to present the content I inject into an Angular directive within an React component. See below for the call to the component: <alert type="'danger'">…
-
1
votes1
answer487
viewsAngularjs consume Restful in different domains
Good afternoon, I am trying to make a client that indexes the information of various webservices (on bitcoin quotes from various brokers) but when trying to access the webservice the values imported…
-
1
votes0
answers23
viewsProblem with ui-router in Angularjs
I’m in Trouble when I’m trying to make a GET on the API to get information. The problem is that the webserver is not Calling the API. I must Fill in the ng -model field named. The following part of…
-
1
votes3
answers7147
viewsStop executing a Javascript function to perform another function
I am developing a system using angular and have the following function: function drawLatLong(i, arrayIdColetor) { ..... (não exibi o código por ser grande e achar desnecessário que vcs o analisem)…
-
1
votes1
answer1358
viewsChange regional to "en" datepicker with Angularjs
I would like to change the Reginal to "en" on my datepicker, I am using Angularjs. <input type="text" ng-model="date" jqdatepicker /> <br/> {{ date }} var myApp= angular.module('app',…
angularjsasked 7 years, 9 months ago Marquin Ferreira 362 -
1
votes1
answer305
views$Location.path of Angular changed?
Good morning, everyone! I am trying to make a Function with $Location.path('/main'); and when the function, the following message appears on the console: Typeerror: Cannot read Property 'path' of…
-
1
votes1
answer51
viewsError between Directive and controller
Archives: index.html controllers/control.js Directives/directive.js Directives/boot.html *i have a function called $Scope.change(age) = Function(){.... }; in the control.js *in the directive I have…
-
1
votes0
answers74
viewsManipulating views within an abstract route in Angularjs
I am creating an application that uses as backend o Code Igniter and for the frontend I intend to use the Angularjs. My problem is that I am not able to understand how I will insert new modules…
-
1
votes1
answer56
viewsI need to modify the css of a radio button Md-radio-button via jQuery
Colleagues, I’m trying to modify the css of a md-radio-button via jQuery but I’m not getting it. <md-radio-button id="radio_letter" style="margin: 2px!important"…
-
1
votes1
answer39
viewsWhy is subheader not showing?
I’m trying to create a search bar, I’m using the bar-subheader for this but does not display. How to do this ? <ion-view view-title="Empresas"> <div class="bar bar-subheader…
-
1
votes3
answers480
viewsHow to load an ng-controller through ajax and inject it into the DOM
I am creating an application where I would like to load my modules through ajax. This application uses Angularjs to do the treatment of each module and these are injected into my DOM using Jquery,…
-
1
votes0
answers97
viewsPhp does not receive the data I pass with $http.post from the angular
Hello, everyone. I’m trying to get some data passed by $http.post for a php script. This is my angled ajax: $http.post('../_classes/chamaOddss.php', id).then(function(datae) { console.log(datae);…
-
1
votes1
answer36
viewsngDisable does not validate
Good morning. I have been trying for a while to validate my form, disabling the Button when it is invalid. I have tried several ways, including searching here and following as it was said. But it…
angularjsasked 7 years, 8 months ago Aleff Rodrigues 11 -
1
votes2
answers1649
viewsDoubt with ng-Pattern input number with 2 decimal places - Angularjs
I am wanting to format a decimal value so that it is always sent in this formatted: 00.00, I have an example on this site…
-
1
votes1
answer725
viewsHow to Filter by Category via Modal checkbox using Ionic / Angularjs?
EDITED FOR BETTER EXPLANATION I have 3 types of filters: A research: <div class="bar bar-subheader bar-assertive"> <label class="item-input-wrapper textbox-search"> <i class="icon…
-
1
votes1
answer101
viewsRequisition Angularjs
I’m starting with Angularjs and to study I created an application I saw on the internet, but when I use the command "ng-include="'Footer.html'" inside the div it gives an error in the console.…
-
1
votes0
answers59
viewsAngular sending data with token
Personal a doubt that for many it is very basic, but I did not understand yet, I have an application on . net and one in angular receiving the token, the two are OK with the Token storage and the…
-
1
votes7
answers8821
viewsRegular expression for phones?
I created a Directive to format phones with or without digit 9. Now I need a regular expression to validate whether the number format is correct on ng-pattern. I created a regular expression but I’m…
-
1
votes0
answers31
viewsHow to create a Charts in excel via javascript
I need to implement a solution in which I have to build a charts in the excel using javascript/angular. I already have the charts rendered on screen using chartsJS, but I need to export them to…
-
1
votes2
answers3297
viewsHow to set data in localStorage
I have the following code: $scope.loginUser = function (user) { console.log(user); $http.post("admin/php/login.php", user).then(function(response){ if(typeof(Storage) !== "undefined") {…
-
1
votes1
answer787
viewsng-click button inside a label
My intention is for a close-up button to appear inside the input so that by clicking on it, the search query is reassembled and returns all the items again and not just the items of the search in…
-
1
votes1
answer279
viewswindow.history.pushState
I’m using the function pushState to populate the history, until then all right, but he at the time to use the windows.history.back() can only return once. The function you add is the following:…
-
1
votes1
answer88
viewsHow to visually map an Ionic app?
all good? I wonder if there is any tool that draws the routes of an app? I wanted something like: App screens with route and controllers. My project is so big, I need a map... does it exist? Or…
-
1
votes1
answer103
viewsReactive Native error when generating Android app
I’m running the commands: react-native init AwesomeProject cd AwesomeProject react-native start And then that command: react-native run-android The error that appears: How to correct this error ??…
-
1
votes1
answer951
viewsPage . html does not want to appear
I’m making an application with Angularjs. I have pages being called, however, a single, does not appear. Follow my codes: app js. var app = angular.module("vc", ["ui.router"]);…
-
1
votes3
answers189
viewsIon-tabs with tabs-top class on iOS?
I’m creating an app that uses tabs for navigation and set tabs to top with tabs-top. Android works fine but iOS tabs are behind the header, how to solve this ? tabs.html <ion-tabs…
-
1
votes1
answer332
viewsHow to delete data using angular, php and ui-route?
I am trying to make a method to delete a record from the bank and the following message seems on the console: GET…