How to dynamically add elements (buttons, input elements) to a page in EmberJS?
@doni wrote: This is in JavaScript: button = document.createElement(“BUTTON”); buttonText = document.createTextNode(“Edit”); button.setAttribute(“name”,name); button.appendChild(buttonText); Posts: 2...
View ArticleSetting query params programmatically
@WMattGardner wrote: I’m interested in ways of thinking about this problem: setting query params programatically. Suppose I have some content coming from a model (layers on a map, for example), and I...
View ArticleReuse a component for display and create actions
@belgoros wrote: I have a component that I call from a for loop in a template and use just to display a model values: # templates/holiday_hours.hbs <form {{action "updateHolidayHours"...
View ArticleUsing routes to perform actions
@Ben_Glancy wrote: Hi, I am curious to know how far other people take the use of routes. With the transition retry and afterModel() and so on. I find it’s easy to have a route that “does” something,...
View ArticleSignificant performance degradation when loading large number of components
@jcorradino wrote: Hey all! We are looking into building out a component similar to Ember-Light-Table and hit a bit of a snag. This component utilizes component contextualization to improve on...
View ArticleIE11 issues with Ember tutorial
@alee642b wrote: Hi everyone, I’ve recently started learning EmberJS and I’m trying to write an application that works with Chrome/Firefox AND IE11. I’ve been running into a problem where the app will...
View ArticleWhere do Fastboot initializers go?
@rondale_sc wrote: Mostly documenting for future travelers: I needed to run an initializer only in FastBoot land. Rather than guard for FastBoot I want to use a FB initializer. In an addon you can do...
View ArticleThrow an Error when Mirage route is not defined
@mungalmaroti wrote: Hi , Please help me regarding how to set the test case for default route . My default port is ‘http://localhost:2300/’ when I create a acceptance test case for dashboard. Than I...
View ArticleInitializing arrays in Ember
@jfschaff wrote: I just had a hard time finding how to define an array with Ember’s new ES6 module imports. So here it is for others who might have the same question: import { A } from '@ember/array';...
View ArticleEmber-place-autocomplete size
@vincenthure wrote: Hello I am using ember-place-autocomplete to generate waypoint to my map. It’s working great, a very good addon. I just want to change the size of the input box and I don’t success...
View ArticleDisable or hide specific inspect panel icon tabs
@Boo wrote: I want to hide or disable 4 inspect tabs out of 6 tabs in the group of Inspector Body. My 6 Inspect tab of html file was mentioned in below html code: <div class="inspectors-view">...
View ArticleHow to render a complete page
@aboli wrote: createcluster.hbs {{#if displayError}} {{#display-error type=errorType errorMsg=errorMessage}}{{/display-error}} {{/if}} <!--tabs added--> <div class="mtabs"...
View ArticleAre there editor integrations for ember-template-lint?
@mattmcmanus wrote: I’ve spent a couple minutes searching for this to no success. I imagine it’s just not possible yet. Is there a editor integration for ember-template-lint? I’m using atom, but I’m...
View ArticleCalling a route action from a component fails
@belgoros wrote: I tried to use sendAction to call another route action from component like that: # components/holiday-hour.js actions: { ... deleteHoliday(holiday) { this.sendAction('deleteHoliday',...
View ArticleSetupController or Model
@Ben_Glancy wrote: If my route only uses a parent model as data, would I return it using the model hook (ie with modelFor(‘parentModel’)) or by setting it with setupController()? model(params) { var...
View ArticleUsing custom sort with Ember.computed.sort
@Levi_Hugo wrote: Hi newbie here. I’m using Ember.computed.sort and was wondering how to properly use a custom function to sort a model property that is ‘belongsTo’. I managed to make it work by...
View ArticleMany to Many relation linking\fetching problem
@Garun wrote: I have two models in Ember: field-type, field-option, defined as follows: import DS from ‘ember-data’; export default DS.Model.extend({ … fieldTypes: DS.hasMany(‘fieldType’) }); import...
View ArticleIssues upgrading from 2.13 to 3.1
@wojo wrote: I’m getting two errors when upgrading to the latest version. The error message for the first is below. It gives an error when calling this.get('features'). features is the...
View ArticleEmber 3.1 Upgrade Issue (Template Compile)
@richgt wrote: Hey folks - we’re running into a bit of an odd issue in a test while trying to upgrade our app to Ember 3.1, and it appears glimmer related (though we’ve hit 3 red herrings already, so...
View ArticleError: Assertion Failed: You cannot make a new Ember.Application using a root...
@Loz wrote: Hi, I’m trying to run tests in the browser, but I’m getting a lot of these errors: “Error: Assertion Failed: You cannot make a new Ember.Application using a root element that is a...
View Article