Ember js with SignalR
@deluxetiky wrote: I couldn't find any working examples that uses Signalr. The problem I had was importing signalR library into the project. Posts: 1 Participants: 1 Read full topic
View ArticleHow can I push data from server to client?
@mukeshsingh3 wrote: I need live data, whenever database has been changed, this should be reflected to other users' screen at the same time. Is there any way to push data from server to client?...
View ArticleGot TypeError when following official Tutorial: Super Rentals
@daqing wrote: In the final chapter, when doing autocomplete, I got an error said: TypeError: undefined is not an object (evaluating 'this.set('filteredList').clear') when clearing the city input...
View ArticleAddons dependent on another addons
@fatbotdesigns wrote: Hi, I'm currently building an addon where our models (jsonapi resources) are placed. This addon is dependent on two more addons namely ember-jsonapi-resources and...
View ArticleList-View in Ember 2.3
@Deepak_Negi_Sunny wrote: Dear Members, Please tell how to use ListView in Ember 2.3. In previous ember 1.13 we were having Ember.ListView.extend which seems not to be working in Ember 2.3 Regards Dn...
View ArticleDifference between ember init and ember new
@johnfelix wrote: Hi, Ember newbie here. Whats the ember init and ember new. Thanks! Posts: 2 Participants: 2 Read full topic
View ArticleCustom app.outputPaths.app.html not fingerprinted
@mmiklo wrote: I have the following code in ember-cli-build.js: outputPaths: { app: { html: 'Default.aspx' } } (we are using .net as a backend and we need the generated app file to be Default.aspx)...
View ArticleWhy is the value of a new property is undefined in this example
@johnfelix wrote: Hi, In this code example, bulb object is created and later I added a new property 'color' using reopen method with the value 'yellow'. I thought it will be added to existing...
View ArticleEmber Classes Status Hints
@nir wrote: I often find myself browsing Ember API website, just to learn something new or to deepen my knowledge, but what I really miss there is the option to see which classes have been deprecated...
View ArticleHow to bind service property in comtroller
@adsl99801 wrote: for example I have a service called 'member-http' ,Now I want bind emailPatten(for validate user's Input) definded in 'member-http' service(or access)...
View ArticleMaster-detail view with components
@JackNorris wrote: I currently have a master-detail style setup using named outlets which seems to work fine. With the emphasis of components being the future I am wondering how I can use components...
View ArticleWhat is best way to pass value out from route change
@adsl99801 wrote: 1. I have a my-header component on top of my webpage <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#hamburger"> <span...
View ArticleEmber lookup property from inside custom component
@harimath wrote: Say I have a custom component as my-panel And in the backing JS (my-panel.js) this.get('targetObject') Also I reference/use this component from another custom component say...
View ArticleisLoading component waiting on API request to finish?
@hschillig wrote: I'm trying to let the user know that the request is still waiting to be completed. I'm requesting data from an API like this: <object...
View ArticlePublic API for parent/child component lookup?
@lightblade wrote: There's a few ways that I'm aware of Component#parentView Component#childViews Component#nearestWithProperty et al But from what I see they are all private APIs Posts: 2...
View ArticleJQuery Datatables replacement
@joseph_dillon_522 wrote: Are there any well developed Ember alternatives to JQuery Datatables? We're currently using them in a standard JQuery project and I'd like to move it to ember, but our...
View ArticleHow can I call an event from my controller to my component
@dubbya wrote: Hi All, Running into an issue that I've been stuck on for days and I can't seem to figure this out. It seems like it would be simple enough but apparently it isn't. I have an action in...
View ArticleGetting the name of a function provided to an `action` helper
@nullnullnull wrote: I'm assuming this isn't possible, but wanted to see if anyone knew any better. With ES6, you can get the name of a function. For instance: function foo() { return true; } function...
View ArticleExcluding test related files when building for environment "development"
@skaterdav85 wrote: Whenever I build for an environment other than "production", I see test-related files generated in dist/assets like: blanket-loader.js blanket-options.js failed.png passed.png...
View ArticleEmber Form Submission without controller
@Kunal_Sharma wrote: Hi I am new to ember and I am looking for a way to submit my form without the help of controllers because all the example I find on internet uses controllers for example a fiddle...
View Article