Ember Simple Auth for a cookie based simple user/pass login
@v3ss0n wrote: Ember simple auth is very hard to get it working with custom auths since there is no example at all for custom authenication.here is my server side auth -- check user name and password...
View ArticleHow to add create,edit,delete bootstrap icon in ember jstree plugin
@umeshk45 wrote: I have used ember-cli-jstree plugin in my ember js project but I am able to add create,edit,delete bootstrap icon in hover action on node menu. Posts: 1 Participants: 1 Read full topic
View ArticleUsing 'this' in a templated string for computed property fails?
@dmitry-saritasa wrote: Person = Ember.Object.extend({ // these will be supplied by `create` firstName: null, lastName: null, fullName: Ember.computed('firstName', 'lastName', () => { return...
View ArticleEmber handle custom error payload from server
@itssasanka wrote: Hi, I have a simple ember model called Tag, I have the model as follows: import DS from 'ember-data'; export default DS.Model.extend({ name: DS.attr('string'), notes:...
View ArticleBest practice of passing actions in component inside component
@tmclouisluk wrote: I am working on passing actions in component inside component. In the general, I am using the method like that home.hbs: {{layerOne action1="action1" action2="action2"...
View ArticleDeleting associated hasMany records in a nested route
@munderwood wrote: I'm trying to figure out the best Ember 2 way to display a list of associated records in a nested route for a single given record of a different type, and to be able to modify the...
View ArticleChange apiKey on runtime Leaflet Google map
@ioanszabo wrote: Hi,I am using leaflet with google map. I've set apiKey in config/environment.It is possible to change the key dynamically? where and how, before it is used by google mutant plugin?...
View ArticleHow to exclude certain bower component CSS during build
@Arunkumar_V wrote: how to exclude certain bower component CSS during build Posts: 2 Participants: 2 Read full topic
View ArticleEmberjs apps fails with no console messages - how to debug?
@dmitry-saritasa wrote: so this is my hbs tpl before{{format-date '2015-06-25 16:09:23'}}after the problem is on line {{format-date '2015-06-25 16:09:23'}} which stops execution here, and I see no...
View ArticleEmberJS Maintainability
@Mervin_Vrolijk wrote: I'm making an essay about AngularJS vs EmberJS. In here I compare these two with different questions and at the end a decision is made for which one is better for developing web...
View ArticleBad $ (jQuery) when import anonymous AMD module (Bootbox.js)
@Myrdhin wrote: Hello, I try to import an anonymous AMD module : Bootbox.js. I read Ember CLI User manual how to import it : app.import('bower_components/bootbox/bootbox.js', { using: [ {...
View ArticleBest approach to upgrade from Ember 1.0 to Ember 2.13
@TechLov wrote: Hi All, I am new to Ember. I have a task to upgrade from Ember 1.0 to Ember 2.13. I can see that there is an Ember upgrade guide available at...
View ArticleBest practices about where to translate strings
@Myrdhin wrote: Hello, I use components and i18n and I would like to have your opinion about where to do the translations: component's template or route's template? Me, I try to translate all my...
View ArticleBest practices for article/review components
@langereissilvio wrote: I'm setting up a site where a certain productline will be reviewed and can be rated by site visitors.I plan to make bi-weekly reviews, but I'm a bit lost on how to go about...
View ArticleCarousel with Liquid Fire?
@accelerate wrote: I was looking around with carousel implementations for Ember and was not happy with any of them, and my use case is pretty simple, so I thought it would be simple enough to roll my...
View ArticleIssue with nested promises for a group-by helper
@scott.werner.vt wrote: I am creating a group-by helper (addon when ready) which supports nested async paths (relationships). The helper works for an array with nested objects but for some reason it...
View ArticleChanging child route query params and willTransition
@ultish wrote: Hi, I'm still relatively new to Ember dev but I've recently got stuck with an issue that causes a Maximum call stack exceeded error. Here's my routes: /parent/ /parent/childA/:id...
View ArticleUnexpected token error in colons after fixture keyword. Can anyone help with...
@vishal.sh11 wrote: import DS from 'ember-data'; var address = DS.Model.extend({ house: DS.attr('string'), street: DS.attr('string'), place: DS.attr('string'), landmark: DS.attr('string'), city:...
View ArticleCustomizing default packages in new ember application
@Gilgalas wrote: Hello, I am managing several internal ember projects, all of them using a shared set of devDependencies (e.g. ember-cli-sass, ember-truth-helpers, ember-i18n ...). Is there a way I...
View ArticleENOENT: no such file or directory, uv_os_get_passwd
@sfcooper21 wrote: Hello. This is my first post, so hello all! I've had a couple of ember apps up and running fine this morning, but am now having issues running ember server and get the following...
View Article