Questions tagged [angular-meteor]

Framework to Build Realtime Web and Mobile Apps

A framework to Build Realtime Web and Mobile Apps With AngularJS and Meteor.

495 questions
3
votes
1 answer

App from Socially tutorial with angular2 stuck in loading page on Android

I'm following the tutorial from meteor and angular 2 and when I reach the step 11 Running your app on Android or iOS with PhoneGap I can't make it work on my android device. This is the output I get from the console. Error: Uncaught (in promise):…
Sergio Vilchis
  • 301
  • 1
  • 3
  • 16
3
votes
1 answer

Angular2-Meteor zone() method

In the angular2-meteor tutorial step3, we use a zone method. Code: import { Component } from '@angular/core'; import { Observable } from 'rxjs/Observable'; import { Parties } from '../../both/collections/parties.collection'; ...some lines…
lightbringer
  • 339
  • 2
  • 14
3
votes
0 answers

angular-meteor meteor node_modules/@angular/router/index has no exported member 'provideRouter'

Issue I am using angular2 with meteor and trying to move to router 3 from router-deprecated. I have been following the tutorial on https://angular.io/docs/ts/latest/guide/router.html I keep getting the following error when I run meteor: Module…
3
votes
1 answer

Custom filters produces infinit digest loop with angular-meteor

I have the problem, that custom filters are producing an infinit digest loop in angular-meteor. (Angular error description page) I made a working example in this plunk with pure angular. When I try the same with angular-meteor in es6 style, the…
3
votes
1 answer

How to use RxJS in an angular2-meteor project?

I have an angular2-meteor project. I tried to use RxJS, so I added these in my code: import {Observable} from 'rxjs/Observable'; import 'rxjs/Rx'; But when I run it, it shows: Cannot find module 'rxjs/Observable'. Do I need install any package…
Hongbo Miao
  • 31,551
  • 46
  • 124
  • 206
3
votes
2 answers

Service does not work well with *ngIf in Angular2

EDIT: Hmm, I should be more clear. This is an angular2-meteor project. Because meteor is reactive, so maybe has other ways. But @lodewijk-bogaards is an good solution for pure Angular2 project. I am using Angular 2 (TypeScript). I try to use…
Hongbo Miao
  • 31,551
  • 46
  • 124
  • 206
3
votes
0 answers

Angular Meteor $reactive vs getReactively

I'm learning Angular Meteor and I have a question: What is the difference between using $reactive and getReactively? If you take a look at the API reference you get this for $reactive (http://www.angular-meteor.com/api/1.3.2/reactive): A service…
3
votes
2 answers

Redirect after login AngularJS Meteor

I'm trying to redirect after login to a specific page in Meteor using AngularJS. But somehow it is not working. After login Meteor.user() is returning null. Because of this every time it is routing to messages page only. I have seen this example…
3
votes
2 answers

How to reactively get currently logged-in user in angular-meteor and ionic?

I want $scope.me to be reactively represent the currently logged-in user, so that when a user logs out and logs back in as another, this variable is updated. Right now when a user logs out and logs back in as another user, the old value of…
JD.
  • 1,691
  • 4
  • 20
  • 36
3
votes
1 answer

AngularJS: First button in form fires on enter button press even though it is not a submit button

If I press the enter button after editing input_a, processInputA() is called. The submit() function is omitted. This does not happen for input_b: It works as expected even though it is similar to input_a. The submit() function is called as…
ideaboxer
  • 3,083
  • 6
  • 36
  • 57
3
votes
0 answers

Angular-Meteor Fast Render

Is there a way to use Meteor Fast Render (https://atmospherejs.com/meteorhacks/fast-render) with Angular-Meteor and Angular routes/state?
Guima Ferreira
  • 195
  • 1
  • 11
3
votes
1 answer

How to add a datepicker to angular-meteor?

I've just started experimenting with angular-meteor, which feels good, but weird at the same time. The thing I'm uncomfortable with is the fact that everything is done with packages and that I'm unsure of how much I can do manually. So I've followed…
kramer65
  • 39,074
  • 90
  • 255
  • 436
3
votes
1 answer

Using iron-router with angular-meteor makes controllers being loaded twice

I have a Meteor application using angular-meteor. I need now to load different angular modules depending on url. I added iron-router to my application to do so and I continue to handle routes for each module using ngRoute and anchor nav but it…
3
votes
1 answer

Trouble with client-side database operations in angular-meteor

I'm new to app development in angular-meteor, and I'm struggling to make changes to a database from the client side. I've completed most of the angular-meteor tutorial with success, but now that I'm trying to start a new project and adapting…
aliigleed
  • 366
  • 2
  • 13
3
votes
2 answers

Transform business object into view model in angular-meteor

Background I have an angular-meteor app and a collection of business objects in mongodb, e.g.: { startDate: new Date(2015, 1, 1), duration: 65, value: 36 } I want to render this data in different views. One of the views is a graph, another is a…
Bjarke Pjedsted
  • 308
  • 3
  • 7
1 2
3
32 33