How to pass slideshow data to component
@ob7 wrote: My background is in php and I'm new to javascript so bare with me. I've chosen ember based on its philosophy and direction, but need a little help if thats ok. Every page on my website has...
View ArticleHow to access sub route model from main application route
@ob7 wrote: I would like to update a component displayed in my main application.hbs template based on the model returned from the current route. So if index.hbs is loaded, I need a component inside...
View ArticleSave only when model changes?
@gjhawar wrote: Hello, In my router I am trying to save the elements in an array, but I only want to do that if the underlying model has changed. import Ember from 'ember'; export default...
View ArticleRerender component in application.hbs whenever route changes
@ob7 wrote: My application.hbs houses a slideshow that gets it data from the current route. I need the component to rerender anytime the sites route changes, how can I do this? Posts: 1 Participants:...
View ArticleLink become inactive
@Alex_Lvovsky wrote: Hi there, I'm new in Ember..And I have a problem that on transition to some route one of my links become disable.I'll explain.In my application route I call findAll to bring me...
View ArticleWhat is the "view" layer in ember?
@ob7 wrote: The template? The template gets it data from the route. Posts: 2 Participants: 1 Read full topic
View ArticleIs it possible to make emberjs support nativescript
@v3ss0n wrote: I am testing nativescript and performance is truly native and very small binary build, and one codebase for both android and IOS (not web compatible tho). It have Firstclass angular...
View ArticleMaintaining component state through route transitions - EmberJS
@gattra wrote: I am building a single page music web app using Ember. Each track is represented on the page as a component. There are many tracks on a given page. When a user clicks play, the...
View ArticleAccessing another routes model
@ob7 wrote: I have data stored in one route that I would like to get from another route. How can I do this? Posts: 2 Participants: 1 Read full topic
View ArticleHow to pass value from Router to some service?
@collegeimprovements wrote: I need to access the value of currentUrl in one of my service.For that we have following code: const Router = Ember.Router.extend({ location: config.locationType, rootURL:...
View ArticleEmber generated ids on subtypes in belongsTo relationship?
@gjhawar wrote: I have a ember model in which I have a belongsTo relationship like export default DS.Model.extend({ name: DS.attr('string'), entityType: DS.belongsTo('entity-type', { defaultValue() {...
View ArticleEmber model forms concept
@meph wrote: Hi,I have a form for editing attributes of a model "video". This form is modal and includes validation of form fields. If validations are successful, it will update the record on the...
View ArticleConverting an ajax JSON object into an array
@chrismou wrote: I'm relatively new to Ember, and I'm trying to get my head around the correct Ember way of manipulating data pulled in via an AJAX call before setting it as the model (so it can be...
View ArticleBest practice for column based UIs?
@boyanyordanov wrote: Hello! This is my first post here, I tried to research as much as possible and didn't find anything like our use case and after a few days of experiments I decided to move the...
View ArticleBuilding a simple search component
@C4rmond4i wrote: Hi In my application I have to build a search component to search for articles via an EAN (European Article Number). My model looks like the following: /app/models/article.js import...
View ArticleStart with Ember and search for mentor
@Tomasz_Jeznach wrote: Hello everybody! I want to start with Ember.JS, but i need help. What tutorial on web use? (video, text,example) - i will be glad if you link some good piece Could you tell me...
View ArticleCreating forms [contact form]
@ob7 wrote: Whats the best way to go about creating forms in ember? I will need to build a contact form. I'd like to use pure javascript for the whole thing. What if I wanted to send the results...
View ArticleHow to change serialized Data based on the includeID flag in options?
@gjhawar wrote: I am trying to massage the underlying data based on the options set in adapter. Here is my adapter :slight_smile import ApplicationAdapter from './application'; export default...
View ArticleLoading Template Not Working
@rizkiandrianto wrote: Hello, I use Ajax to render component.I want to have 'loading screen' for every route.Would you guys help me to make the loading screen?If global loading page is not possible at...
View ArticleNested route not work properly
@GDee wrote: Hi everyone, i am very new to EmberI have a template which has the list of categories. When i click on a link in the list a nested template is correctly showing. When i click another...
View Article