Helper and returning the resolved value of a promise
@fguillen wrote: I have this Helper: export function myHelper(params) { let myObject = params[0]; return myObject.myMethod(); } But this is sending this error to console: my-helper.js:8 Uncaught...
View ArticleAcces query params in view
@Alessio_Varalta wrote: Hi, I want to change the class of a div in base of a params in the url, is possible to access to the query params value in the view?? For example {{#if queryParams.ctx ==...
View ArticleWays to improve boot speed
@Yaroslav_Poliakov wrote: Hi all! I'm looking for ways to optimize Ember app boot speed. I have tested my deployed app with throttling (regular 3G - 750kb/s). The results are terrifying:...
View ArticleHow to include bower (getmdl) js into ember?
@ridermansb wrote: I install material-design-lite via bower .. So I include into my app .. var app = new EmberApp(defaults, { sassOptions: { includePaths: ['bower_components/material-design-lite/src']...
View ArticleUsing simple-auth-token to connect DB
@Ajaz_Shaik wrote: how can connect to Database using simple-auth-token, how should i do configuration settings in environment.js thanks in advance Posts: 1 Participants: 1 Read full topic
View ArticleSelect options gone when calling select2
@niconel wrote: I got a custom select list component which I got in my template as follows {{custom-selectlist optionItems=item.dealTypes }} This works perfect, and the select render with the list...
View ArticleHow to manipulate an Ember Object and only notify propagate changes when all...
@fguillen wrote: In my actual scenario I am trying to move one Array element to another position in the Array. To do so I remove the element from the old position and add it to the new position:...
View ArticlePass Data from a form template to form's JavaScript - component
@Rafal_P wrote: Hello , I'm creating a component which is a form, this is an example of my code: template of component: <label> Detector type</label> {{input type="text"...
View ArticleEmber addon for android development
@neophoenix wrote: Hello, I am a beginner Ember user, but I was wondering if anyone knew if there is an addon for android or smart phone development? I am creating an application which requires the...
View ArticleActive javascript order select after page is loaded
@Alessio_Varalta wrote: Hi, I have a problem to order my selects in my application. My problem is that i have two languages Italian and German. When I retrieve the date from backend these are in...
View ArticlePre-boot JavaScript
@jamesarosen wrote: I'm looking for a pattern for code that should run before Ember boots. I'm thinking of things like initializing tracking libraries and checking browser compatibility....
View Article"Create" in it's own view, not in outlet
@niconel wrote: Lot of information these days, so probably just missed something silly I got a "deals" route (which list deals) and a "deals.create" to create a new one. But I do not want the create...
View ArticlehasMany association
@ghoshnirmalya wrote: I asked the question on StackOverflow (http://stackoverflow.com/questions/38289037/hasmany-association-in-ember-js/38289732#38289732) but didn't get much help. So, I'm asking it...
View ArticleData posted to api empty?
@niconel wrote: My api is Asp.net web api, so I'm using the web-api adapter and serializer (both empty, other than the api url in the adapter) I can get data from my api just fine, and after a bit of...
View ArticleGet in serialize (normalize) params passed with store.queryRecord
@Rashe wrote: Hi, I'm sure it's impossible, but I will ask to be sure. I have a serialize where I have normalize function, so what I want is, create an ID(hash.id), but ID should be some query params...
View ArticleComponents inheritance
@Alex_Lvovsky wrote: Hi, I'm new in Ember Maybe can you help how to write right. My application (one of its pages) will contain grid with widgets. Widgets will have headers, in the header there will...
View ArticleCheck if findAll is still background reloading
@francesconovy wrote: In my app, I want to show a list of all items fetched via store.findAll('record'). This works nicely, and it shows local records immediately, and then does a background reload...
View ArticleEncrypt ember-data post/put requests
@igorpreston wrote: Hi, Is there a way to encrypt post/put requests sent data in ember-data? I don't want user to be able to inspect what has been sent and in which format to api. I thought about...
View ArticleBlocked components
@Alex_Lvovsky wrote: Hi, I'm new in Ember. I want to create a base component, that contains some buttons (actions) and also have {{yield}} (data) inside it. So I want,for example, to create many...
View ArticleSending data to asp.net web api, child property is null
@niconel wrote: I asked earlier why would it be that my model's properties are empty when sent to my api (asp.net web api, and using the web-api adapter) So I created a "test" model on both ends to...
View Article