Radio type inputs checked property not working
@bmurphy wrote: Super simple yet just not working in Ember octane… My goal is to simply control a couple of radio buttons programmatically in a DDAU fashion. This means in my action handler I’m...
View ArticleCan you guys please weight on Flutter's component-based design?
@dirtyhippie wrote: Hi folks, I know that Ember.js had components for years and went through many iterations to make them work. Including pretty interesting turns like DDAU and contextual components....
View ArticleEmber.js - The Ember Times - Issue No. 143
@ember-blog wrote: 👋 Emberistas! 🐹 Destroyables RFC in final comment period 💬, Ember Engines documentation rewrite ⚙️, Ember at Square 💻, check out new Ember CLI documentations 📚, introducing...
View ArticleEmber relationship problem
@Jogi_Jacob1 wrote: I need to save a user data onto my local storage . JSON.stringify an ember object, it is NOT saving relationships properly, Here I am getting the relationships out of the ember...
View ArticleModel id not being pass to PUT or DELETE call on .save()
@Frank wrote: I am using 'ember-data-url-templates' in my model adapter. When I do model.save(), or model.destroyRecord(), I get an error 400 because somehow the model id is not being passed to the...
View ArticleCustomize adapter's pathForType to include the related model's id
@pragatheeswarans wrote: Suppose, I have a model like the following. // models/post.js author: attr('string'), title: attr('string'), views: attr('number'), comments: hasMany('comment') Now, if i want...
View Article[Code Review] Getting Started with Testing
@NicholasJohn16 wrote: I’m just getting started with testing and I’m learning. I wrote a small component that truncates and expands text and wrote some tests for it. I’d appreciate any feedback to...
View ArticleHow to render nested route in new page?
@Yeevon wrote: I currently trying use LinkTo to render nested route by using {{outlet}} tag to another new page. I have forum route and nested forum details route In the forum template: <LinkTo...
View ArticleHbs typescript being worked on?
@atomkirk wrote: Someone said there was work being done on making hbs file type checkable with typescript. Is this actually be worked on and does anyone know the status? Posts: 1 Participants: 1 Read...
View ArticleExclude custom adapter from production build
@beddu wrote: My Ember application (ember-cli:3.4.4 ember-data:3.4.0) has a custom application Adapter which can redirect requests to a simulation back-end, used only for testing purposes, when a flag...
View ArticleEmber.js - The Ember Times - Issue No. 144
@ember-blog wrote: 👋 Emberistas! 🐹 Call for a11y-focused contributors ❤️, quest issue: drop mixins from ember-simple-auth 🔐, RFC roundup 📣 Ember Conf 2020 trainings 🚀, and last, but not least, state...
View ArticleHow to get Google reCaptcha v2 to work in Ember Octane
@UsuallyReliable wrote: I am upgrading to Ember Octane and I am using ember-g-recaptcha https://www.npmjs.com/package/ember-g-recaptcha. The project README.MD has not been updated to reflect Ember...
View ArticleHow to make comment render immediately after adding it?
@Yeevon wrote: I have two function which is create post and create answer for the post. For the create post function, the post will render immediate on the web page. But when i add an answer for it, i...
View ArticleBuild Error (Bundler) webpack returned errors to ember-auto-import
@abkumbar wrote: I installed an npm package and when I try to import the moue into the app, I get below webpack build error. Any ideas on what’s wrong with the import? I’m using ember-cli v3.17.0....
View ArticledidUpdateAttrs in glimmer-components or how to implement an asynchronous getter
@boesi wrote: Hi I try to get used to octane and so far I’m quite impressed. But I’m facing a problem where I even don’t know if I’m searching in the right direction - so maybe the topic is...
View ArticleEmber build and sourcemaps
@harimath wrote: My app is actually a child engine. Recently, I observed that the source maps are not working properly in Chrome. So, I have to open the generated engine.js…But I want to be able to...
View ArticleIssue with belongsTo relationship
@jfschaff wrote: Hi, I have a model: // app/models/expert.js export default DS.Model.extend({ ... user: DS.belongsTo('user'); ... }); and an API that gives JSON data of the form: #...
View ArticleWhy the createdAt will become null when i update the data?
@Yeevon wrote: I currently facing this issues when i need to perform update detail. The createdAt will get the current timestamp when a post is created. When i perform edit the post, the createdAt...
View ArticleUnidirectional Glimmer?
@theInsaneDev wrote: In Glimmer Component, the data flow should be unidirectional right? I’m passing an array from controller to the component, I am accessing the array with this.args and I could...
View ArticleWhat is the best practice of micro frontend on EmberJS?
@whynot wrote: recently , I noticed a new concept of micro frontend . like: https://rohitrox.github.io/2020/01/05/simpler-microfrontends-implementation-with-react-and-esnext. So are someone have use...
View Article