I'm trying to make my submit button disabled if the input fields from an array are invalid. Here's my html <form name="membersForm"> <div ng-repeat="emailInput in emailInputs"> <div class="input-fiel...
Can't make angular app run within meteor templates here is my index.html <body> </body> <template name="myIndex"> <section ng-app="myApp" ng-controller="AppController as app"> <div...
I'm trying to get the Id of the new insert so I can push the Id onto another collection. According to this post => Meteor collection.insert callback to return new id and this post => Meteor collection.insert callback issues, I should be ab...
I use meteor+angular, I want use templateUrl in directive to include nav.ng.html but I throw a error Error: [$compile:tplrt] Template for directive 'checkNav' must have exactly one root element index.html: 5 <body ng-app='ch...
I am in angular's world since few months and I always have instantiated my controllers such that: First I create angular.module: angular.module("dummyApp", ['some-directive']).config(...).run(...); After I can create a control...
Hi we are following the angular meteor tutorials: http://www.angular-meteor.com/tutorials/socially/angular2/bootstrapping We are trying to create the main entry point (main.ts) but it never seems to call the main.ts file. Its calls the rest of them...
I'm writing a Meteor site where the client routing is done by angular-meteor and the server routing is done by IronRouter. One of the calls requires that after a browser operation, I call a server side route so I'm using: window.location.as...
I've just started making a website with angular-meteor in which I now want to use a calendar to select a date. From this SO answer I got the tip to checkout meteor-angular-ui-calendar which I installed using meteor add angularui:ui-calendar Af...
I'm trying to get a list of channels from my main application to an external angular app. I've added https://github.com/stubailo/meteor-rest/blob/master/packages/rest/README.md to my main meteor app and now I can get the collection with a ur...
I'm trying to set a variable depending on the button clicked. Here's my code: 'use strict' angular.module('myApp') .controller('AlineacionCtrl', function ($scope, $meteor) { $scope.activeIndex = {index: 0}; $m...
©2020 All rights reserved.