sam2x

Results 57 comments of sam2x

Hey, i got the exact same situation, i wanted to restrict _stores_ based on the current location of my _entry_. It would be awesome to let **permanentFilters** having access to...

It's not an ng-admin issue, and it's the default behaviour of restangular and $http (https://github.com/mgonto/restangular/issues/232) You need to safe url-encode your id first. Here an example : http://plnkr.co/edit/qrw9Y8rfUUmHM4rOJo1q?p=preview (the user...

Indeed, your case can only work if you dont have two object to handle, eg with nodejs: ``` router.get('/foo/:id') ``` Will works. But as soon you have two entity to...

Hmmm, if it's entityId, have you try to use the url hook which let you define the way you send ng-admin entityId ? ``` nga.entity('users') .url(function(entity, type, entityId){ return entity...

@davisford @btford , has @mritzco PR been merged to the project ? And has @mritzco PR solved the forward rebound issue ? thx for answer guys.

+1. How to open a specific menu from js ? i can't call a function like "openSubMenu('test')"

I have exactly the same problems. I have noticed that using getClassifications all results have identical "value" response. In your example, i got the same behaviour (using LogisticRegressionClassifier, but same...

wow @KyleAMathews solution kinda works. classifier.addDocument(['callback', 'hell', 'npm', 'thenable', 'promise'], 'node') classifier.addDocument(['collections', 'database', 'db', 'mongo', 'mongodb', 'MongoDb', 'ObjectId'], 'database') classifier.addDocument(['collections'], 'database') classifier.train(); console.log('result:', classifier.getClassifications('What a bunch of users collections')) Result...