Questions tagged as 'angularjs'

0
answers

$ (...) .markdown is not a function

I have a problem in the compilation of mardown bootstrap editor when adapting it in angular js with a directive function markdownEditor() { 'ngInject'; return { restrict: 'A', require: 'ngModel', link: function(scope, element...
asked by 05.01.2017 / 12:50
2
answers

Filter data from an array in angularjs

I have the following arrangement of objects: $scope.name = { "cliente":[ {"id":1, "dato":"des"},{"id":2, "dato":"eeeee"} ], "detalle":[{"id":1, "dato":"oooo"},{"id":2, "dato":"ccccc"},{"id":2, "dato":"xxxxxxxxx"},{"id":2, "dato":"zz...
asked by 01.02.2017 / 16:42
2
answers

Laravel 5.1 and $ Http angularjs

I'm trying to access the 'App \ Http \ Controllers \ ReportController @ store' URL from la http, but the route does not load or can not be found, with php artisan route: list it appears to me that it is the route ... How can I access that route...
asked by 01.02.2017 / 16:55
1
answer

structuring content

Good afternoon, I'm doing a project using angular 1.5.8 and I have a couple of doubts that I do not know how to structure it correctly, let's go to the topic, I have a controller to add an object to my project, inside this controller I have 2...
asked by 10.12.2016 / 15:20
3
answers

ng-repeat multiple values

Suppose I have: Columns is an array of an object Column = {name, tipo} <div ng-repeat="column in columns"> => esto iterara 4 veces por ejm: <input type="checkbox" ng-model=""/> <select> <opt...
asked by 21.12.2016 / 13:36
1
answer

Angularjs, problem with ng.repeat when doing push

I have a problem with angular, this is my code: HTML <div class="row"> <div class="col-sm-12"> <div class="panel panel-default"> <div class="panel-hea...
asked by 21.12.2016 / 02:57
0
answers

Creating routes in IONIC: Multiples abstract

Today I come with a new doubt turns out that I am in ionic and I am creating the routes. I understand that the class abstract is a boolean that allows me to inherit children, that is to say I give birth with a tab and the children would be the...
asked by 30.11.2016 / 02:18
0
answers

XMLHttpRequest can not load when loading a json by GET

This is my code. var app = angular.module('adminPanel', []); app.controller('namesController', function($scope, $http) { var root = 'http://samp.newclan.com.uy:3000/api'; $http.get(root + "/users") .then(function (respon...
asked by 03.01.2017 / 19:35
1
answer

Help with a $ scope and data from a database on google maps

I have a problem and I do not know how to use a scope variable and show it on the map, it does not recognize the location /** * Created by gamba on 20/10/2016. */ var app = angular.module("mapas",[]); app.controller("myctrl",func...
asked by 07.12.2016 / 00:49
1
answer

Selects dependent on 3 levels in Angular JS

I am trying to make dependent selects in 3 levels, without access to database. How could I do them in Angular JS? Example: Countries > Departments > Provinces
asked by 07.12.2016 / 19:32