Questions tagged [goangular]

GoAngular is GoInstant's data synchronization and storage integration built for Angular.

GoInstant is a JavaScript API for adding realtime, collaborative experiences into any mobile or web application. They provide the full stack developers need, including client side widgets (to add in functionality such as a user list for presence, form synchronization, etc.), realtime pub/sub messaging, and a scalable key/value store (for storing data).

GoInstant has an integration with AngularJS called GoAngular (which is open source), which makes it incredibly easy and fast to build realtime apps using AngularJS and GoInstant.

GoInstant widgets (user presence, form synchronization, click indicator, scroll indicator, etc.) provide client-side functionality that you drop into any application. These widgets enhance the realtime, collaborative experience.

You can sign up for GoInstant on their website. You’ll get 1 app free for life.

Resources:

11 questions
3
votes
1 answer

How to retrieve the stored value from goinstant

I'm doing something wrong. I'm attempting to get the stored value I have in goinstant. I have a person room with a userName. The value the alert function displays is "[object Object]". Here is my code: (I left out the scripts intentionally). I…
Rudy Hinojosa
  • 1,448
  • 14
  • 15
2
votes
1 answer

Creating an UNDO flow for transacted fields

I've been thinking about the applications for goangular. In the need for immediate storage/database updates, such as a chat application or stocks application etc., I can see how goangular can be extremely useful in the sense of SignalR…
Rudy Hinojosa
  • 1,448
  • 14
  • 15
1
vote
1 answer

How to get a single item from a GoInstant collection?

How do you get a single item from a GoInstant GoAngular collection? I am trying to create a typical show or edit screen for a single task, but I cannot get any of the task's data to appear. Here is my AngularJS controller: .controller('TaskCtrl',…
Corey Quillen
  • 1,566
  • 4
  • 24
  • 52
1
vote
1 answer

What is the correct "returnTo" path for GoAngular $loginUrl running on Cordova/PhoneGap

I'm struggling to set a correct returnTo path for 3rd party authentication (i.e. GitHub) in my Cordova/PhoneGap app on an Android 4.3 device. The command to do this in GoAngular is $goConnectionProvider.$loginUrl(providerName, returnTo). In my dev…
wahdiffy
  • 13
  • 3
1
vote
2 answers

(options) should be type Object, but it was type number with value 2

I am getting a strange error when attempting to use the $goQuery feature. Here is my code: var options = "{sort: null, limit: null}"; var expr = "{userName: 'asdf'}"; $scope.person = $goQuery('person',expr, options).$sync(); I'm getting the…
Rudy Hinojosa
  • 1,448
  • 14
  • 15
1
vote
1 answer

Sortable list with GoAngular

So I'm creating a project where people can work together on a task list. My current method of synchronization is pretty bad so I've been wanting to move to GoInstant for a while. As I was looking around I found out about GoAngular, which seems to…
lemiant
  • 4,205
  • 4
  • 31
  • 38
1
vote
1 answer

Page not updating when using $set with GoAngular

I've got a piece of code that looks like this: $scope.renameUser = function(key,name) { console.log('renameUser, key: ', key); console.log('renameUser, name: ', name); var userOne = $scope.users.$key(key); …
Alfred
  • 7,071
  • 4
  • 27
  • 35
0
votes
1 answer

GoInstant: Match a single array element with $goQuery?

Is it possible yet to query a key with an array value by a single array element with GoInstant GoAngular? For example, if querying a list of items with the following keys/properties, can I select only items that belong to a single user? item: { …
Corey Quillen
  • 1,566
  • 4
  • 24
  • 52
0
votes
1 answer

goInstant authentication, ACL, rooms, groups and stuff

I'm about to write a simple goAngular app for info sharing within heterogeneous cross-domain team (thus I like the idea of ​​using a third party authentication), but I'm still struggling with it. Is it possible to use the "groups" if you use a…
0
votes
1 answer

Removing multiple keys based on a stored field value

I have several records with a unique identifier that I want to drop after the form has performed it's ajax post. Let's assume I have 5 records in my goinstant storage and the common field is xkey and the value in it contains 123*. My question is how…
Rudy Hinojosa
  • 1,448
  • 14
  • 15
0
votes
2 answers

$goQuery is only returning a single value

I have a scope model called person that has a firstname, lastname and fullname. My goQuery works with this: $scope.person = $goQuery('person', { userName: $scope.person.findme }, { sort: { 'userName': 'asc' }, limit: 1 }).$sync(); The only problem…
Rudy Hinojosa
  • 1,448
  • 14
  • 15