How to use date picker with ember
@anaspm wrote: I need to include date picker in my form, i installed pickaday addon and aaded it to my template. how can i get the value of it from template and manipulate it. i tried this...
View ArticleEmber coaching?
@rssfrncs wrote: Does anyone know of any online 1 to 1 coaching? Beginner in ember, not finding all the guides helpful relevant to 2. Posts: 6 Participants: 3 Read full topic
View ArticleEmber Select Chosen Component?
@vinothwindows47 wrote: Hi , Previously I am using Ember Chosen View .But in future ember js view will not be supported .So, I want to move select view to component . Posts: 4 Participants: 2 Read...
View Article[SOLVED] Component javascript broken
@pcjpcj2 wrote: I followed ember.js tutorial my ember-cli version is 2.3.0-beta2 and node : 0.12.7, npm :2.14.10. problem is create components js file. I coded rental-listing.js export default...
View ArticleEmbeddedRecordsMixin as public API?
@ultimatemonty wrote: Are there plans for the EmbeddedRecordsMixin to be a public API? I just upgraded to 2.3 and am loving the module imports but was disappointed to see the EmbeddedRecordsMixin was...
View Article[Guide] Require empty check?
@pcjpcj2 wrote: I am following ember.js 2.3.0 guide. now I read and code autocomplete method. https://guides.emberjs.com/v2.3.0/tutorial/autocomplete-component/ In this page, app/controller/index.js...
View ArticleIntegration Test for Component with dependencies on a addon
@fatbotdesigns wrote: I have a dependency with our internal addon where I'm injecting our json-api-resource to an integration test to 'wrap' a mirage fixture. The said dependency is a resource where...
View ArticleHow to reset a reused component's state?
@ctusch wrote: Ember seems to reuse component instances across route transitions. The problem is that view state (i.e. properties on my component) doesn't get reset. Where should I reset the state?...
View ArticleObserver with params to know the new value of the observed property
@fguillen wrote: I have found the situation that I am observing a property change but I also want to know, into the Observer, what has been the change....
View ArticleConsuming byte stream data in ember-data
@maninder wrote: Hi, I am facing problem with consuming data in image/png format. Problem My server return a file data as bytes stream ( content-type is image/png'). When i call a store.find with...
View ArticleEmber Object creation vs plain JS object
@kirantpatil wrote: I came across this site http://jsperf.com/ember-object-creation-vs-plain-js-object. performed on below settings: https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js...
View ArticleIs calling destroy() on an Object necessary?
@jalapano wrote: I'm wondering if calling destroy() on an Ember.Object that was explicitly created (i.e. not automatically created by the Ember framework) is necessary. The documentation says that...
View ArticleWhat is the idiomatic Ember 2 way to create instances of a custom class, with...
@kbullaughey wrote: I have a custom class, Tile, in which I want access to a service: export default Ember.Object.extend({ linker: Ember.inject.service() }); This required registering the class as a...
View ArticleHow to peform crud operations in same route
@anaspm wrote: I need to do create edit and delete operations in same route. I am using two modal dialogues one is for create and one is for edit. Posts: 3 Participants: 2 Read full topic
View ArticleEmber mirage factory
@dkdrk wrote: Am creating an app without server. So am using ember-cli-mirage. I need to get information from user and store it in factory dynamically. Can anyone help me with this? Posts: 2...
View ArticleAddon the correct way to share large percentage of code?
@palmergs wrote: I've been reading through this topic ( http://discuss.emberjs.com/t/sharing-models-via-ember-cli-addons/6311 ) and I'd like some validation that what I'm thinking of doing makes...
View ArticleHow to architect multilanguage routes with i18n
@oskar wrote: I'm looking for advice on how to structure a multi language application using ember-i18n. I wasn't able to find many resources on this so any guidance would be greatly appreciated!...
View ArticleComponent templateName property gone?
@jasalguero wrote: I'm using dynamic components but want to reuse the same template for some of them, but after checking the Guides and the API, it seems like the templateName is gone from the...
View ArticleHow to get controller from component in latest Ember 2.3.0?
@vinothwindows47 wrote: Hi Ember Developer , Previously I was using Ember views to access controller . For Ex testController : Em.computed.alias("parentView.controller") like this .... In Latest Ember...
View ArticleFiltering list-view infinite scroll
@oscaroxy wrote: I dowloaded "https://github.com/emberjs/list-view" but I don't understand How I refresh model ... that is, first load of page I have 1000 elements, after (by ajax) I load other...
View Article