modelNameFromPayloadKey function is calling while requesting but...
@vinothwindows47 wrote: modelNameFromPayloadKey function is calling while requesting but payloadKeyFromModelName is not calling for me .Any problem ? Posts: 1 Participants: 1 Read full topic
View ArticleUpgrade from ember 1.0.0beta16 to 1.0.0beta19.2 adapter issue
@nagkumar wrote: I have updgraded the application from 1.0.0beta16 to 1.0.0beta19.2, however 1.0.0beta19.2 is unable to execute the name space for training trainingCompliance :...
View ArticleEmber Twiddle Third Party Plugins
@JordanRDesigns wrote: Is there a way to add external jquery plugins to the ember twiddle? Or is there maybe a better tool to create isolated ember apps to test with or give examples with? Posts: 1...
View ArticleHow to inject the Store to my component
@Koala wrote: I am in the situation where i need to inject the store to my component , at least i think this is my need. This is the situation: I have component , the code itself does not really...
View ArticleGetting custom addon directories to appear in an app
@nullnullnull wrote: Typically, when I generate a file for an addon, it adds files to both the addon and app directories. In turn, requirejs.entries contains references to both the addon's original...
View ArticleEmbedding Ember with another page that has an old version of jQuery?
@tsteuwer wrote: I'm wondering if anyone's actually ran in to this issue. You want to embed an ember application into another page which already has an instance of an older version of jQuery. Is there...
View ArticleRelationships with polymorphic and .net webapi
@nilssonan wrote: So i have this simple structure where the project model has a DS.hasMany('question', {polymorphic: true'} and i all works fine. The derived types get materilized to the store. The...
View ArticleVery slow transition possibly caused by removing table from DOM
@danr1979 wrote: Hi all. I'm using Ember JS 2.3.0, Ember Data 2.3.3 and jQuery 2.1.4 and I'm having an issue when trying to transition away from a page with a HTML table component on it. The table...
View ArticleAssertion Failed: A helper named 'my-component' could not be found
@haggis wrote: Hello, I've got an ember-cli app and try to test it the first time. The component was created with ember g component bs-slider. When I run the tests (http://localhost:4200/tests) I get...
View ArticleTwo way binding on an input field with formatting - need to force update
@craig2005 wrote: I'm using ember 2.2 and I have a form with a phone number input that looks like this: {{input id="phone-number-c" class="form-control" value=phoneCell }} I'm binding "phoneCell" to...
View ArticleUnderstanding DS Model life cycle
@fguillen wrote: I am trying to monitor the state changes on my DS Models. I have found interesting flags in the documentation: isLoading isReloading isSaving And they work properly in the templates,...
View ArticleTesting in-repo-addons
@vernercs9 wrote: According to someone on Stack Overflow, there's a way to include tests for in-repo-addon within that addon's directory by including a test-support directory. When I do this and run...
View ArticleAdd belongsTo ID attribute to payload on create/update
@bschaeffer wrote: Is there a way to add a models belongsTo id attribute to the payload when creating/updating the model? I am using JSONAPISerializer ATM but can't find anything on the webs about how...
View ArticleAdding external js and css files in ember-cli
@nagkumar wrote: Hi, I wish to add external js and css files to ember-cli project, is it possible to put this files some where say vendor folder and import it in index.html etc.. rather than add-on...
View ArticleComponent attribute and a computed property in it with the same name: possible?
@Myrdhin wrote: Hello, Beginner, I write this component: export default Ember.Component.extend({ items : Ember.computed('items.[]', function(){ return this.getAttr('items').map(function(item) {...
View ArticleExtensible className additions
@barneycarroll wrote: The application I'm working on depends upon DOM layout considerations which demand given parent nodes to qualify child components' root nodes with classNames. This mixin has made...
View ArticleConditional loading
@mission wrote: Hi, I'd like to load different models according to the set user preferences... The user has them defined as "modules" via hasMany... I just don't know how to conditionally load this...
View ArticleSave multiple model at once, in bulk
@alexmngn wrote: Hi everyone, I know this subject has already been discussed around this forum and stackoverflow, but I cannot find the right way to do it. I have a model called "post" which contain...
View ArticleRun tests faster in command line mode?
@GCorbel wrote: Hi, I want to test my app and I prefer to use command lines instead of the server but I find it a lot slower. Here is an example : time ember test --filter CreateSubscriptionsService...
View ArticleEmber Shims - Exploiting Vendor Folder intent
@nagkumar wrote: Is there a good document on how to use Vendor folder effectively, w.r.t to shim development which is part of ember cli blueprint ember generate vendor-shim abc Posts: 1 Participants:...
View Article