Modularized approach for handling multiple filters on a Page
@pavan_kumar_l wrote: I have a fairly complicated list which I need to filter (state, tags, name, categories) and sort. Some of the filter properties allow multi selection (eg: categories, tags) and...
View ArticleEmber-cli-bootstrap-datepicker and jquery-ui
@Henry wrote: I'm getting an error using ember-cli-bootstrap-datepicker and I think it's because there's a conflict between jquery-ui (required by another addon) and bootstrap-datepicker used by this...
View ArticleGet of array is undefined
@pavan_kumar_l wrote: export class MySelectComponent extends Ember.Component { content: Array<any> = [ { "label": "Name (a-z)", "value": "name:asc" }, { "label": "Name (z-a)", "value":...
View ArticleWhat does Mirage use for an Adapter?
@andrew1 wrote: I'm just starting to use Mirage and I couldn't figure out what adapter it needed. I finally ended up deleting app/adapters/application.js and now everything works. I've read through...
View ArticleUsing NPM Bootstrap Tokenfield in Ember
@iaskquestions wrote: I have an Ember.js application where I installed bootstrap-tokenfield with npm. I then installed ember-browserify so I do import BootstrapTokenfield from...
View ArticleBest practice for "enterprise" grade table functionality?
@przemo_li wrote: Obviously everyone’s tables are unique and all that However business apps usually have things in common including: Ability to execute actions "in bulk" by first checkboxing rows...
View ArticleEmber swallowing errors
@joseph_dillon_522 wrote: Would anyone know why ember would swallow errors? Every time I’ve had an error lately it just failed silently. For example, earlier I had a simple helper that wasnt expecting...
View ArticleHow to share container instance between parent window and child window?
@xiujunma wrote: I need to open a popup window in Ember app, I just don't want the popup window to reload all remote data again. Any idea? Posts: 2 Participants: 2 Read full topic
View ArticleHow to setup Ember (with or without cli) to use already existing express server
@mooror wrote: Hey guys like the title says I have an already existing express.js server and I was wondering how I might use it as a backend for a new ember.js project. I saw the http-mocks and I...
View ArticleUsing services to maintain application / page states
@pavan_kumar_l wrote: Since Ember is moving away from controllers we thought of limiting controllers usage to bare minimum. We have come up with a new pattern but we are not sure if it can be...
View ArticleHow to migrate Ember 2.0
@vinothwindows47 wrote: I am using Ember cli 0.1.0 . Ember version (1.7.1) and Ember data (0.1.0) . How do I migrate Ember 2.0 which has a lot of changes . Any component there to change this ? Posts:...
View ArticleEmber model and mongo model
@celo wrote: Guys, i'm trying to create a belongsTo relationship. When some user create a booking, i'm receiving this in the server: { data: { attributes: { participants: '10', email: 'Marcelo', name:...
View ArticleEmber.computed.sort not invalidating cache
@andrew1 wrote: I'm sorting an array of objects in my app and some of the parameters are sorted alphabetically, while others are sorted as integers: _sortedContent: Ember.computed(...
View ArticleAny experience with deploying to EC2?
@JordanRDesigns wrote: Looking for someone smarter than I that maybe has done this or can come up with a way to do it. We are moving our platform to AWS and will be hosting majority of it on EC2...
View ArticleSending Content-Type in the header to tomcat server
@aodale wrote: I am trying to pass the variable "Content-Type" over to my server from my ember app, built with ember-cli. I have tried just about anything and everything I have found online, but i am...
View ArticlepushObject to hasMany attribute
@celo wrote: Guys, in my event i have several bookings, and i'm trying to figure it out how can i push an booking to my event. I'm trying like this: this.get('booking').save().then((data) => { let...
View ArticleEmbedding old JavaScript app in new Ember app
@xrl wrote: I want to start rewriting my application in an incremental way. I'd like to use Ember for the nav bar/login and then use my existing ExtJS application as the content of the page. Will this...
View ArticleProblem with loading and nested routes
@pjoe wrote: I'm trying to just get a global application loading template to show up whenever I have slow transitions (i.e. with promise returned from before/after/model). however it seems this only...
View ArticleSend actions to components
@ofridagan wrote: Up until Ember 1.12 I have been using the following for sending actions to components: (taken from:...
View ArticleEmber default version of ember-cli
@istoselidas wrote: I am going to create a new ember.js app and I've used ember-cli (which is the recommended way of creating an ember.js app, right?). I am wondering why the default version of...
View Article