I have an array of students which I present their names in a list and under each name two buttons that allow assigning them a positive or negative rating.
What I want to do is to click on the button (positive or negative) to show a message an...
I was taking an internet example of how to create SPA, but I'm stuck, the issue is that it uses some modules , which are nested and create controls with dependency towards modules , the problem is that I can not use the dependencies of ui.b...
I have the following JSON:
usuarios:{
{name:pepe, telefonos:{movil:166666666, movil2:66852147}},
{name:paco, telefonos:{movil:66666666, movil2:66852147}}
}
and my index.html
<div ng-controller="TestController">
<...
Good afternoon.
I'm learning angular and I do not know how to work with the select. I want to have two selections and that the second depend on the first.
For example:
select 1
<select>
<option>Animales</option>
<op...
I'm trying to get the value of a group of option , which works perfectly in the browser, here the example in Plunker , but when compiling the same code to test it on a mobile device, the value still appears in the view, but...
I have the following code that shows me a series of hours from 07 to 22. What I want to know is how to get the value of the time selected in my controller and if it is possible to print on an alert.
Vista html
<div ng-controller="MyCtrl"...
I have the following json:
[
{
"id":"1",
"fecha_trama":"2016-02-16",
"hora_trama":"17:34:48",
"Nombre":"Evaluación de riesgos",
"Apellido":"Sala F",
"Sexo":"10h00-10h30",
"Residencia":"GESTIÓN DE P...
I have a problem implementing the ngInfiniteScroll library of angularJs with Laravel, the truth is not given with that error here my Corner Services
function PostServices($http, $q, CONFIG) {
return {
getPots: getPots,
// po...
I request your collaboration to indicate how to link the data of an object with <select>
app.controller('nombreCtrl', ['$scope', '$http',
function($scope, $http) {
$scope.nino = {
nombre: 'Julian',
sexo: 1,
edad: 0,...