Questions tagged [ember.js]
Ember.js is a component-service application framework written in JavaScript. Consider making your question easier to answer by using the preconfigured templates mentioned in this tag's wiki. (Always specify version of ember used when describing your issue)
23,949
questions
0
votes
0
answers
11
views
npm - same dependency version getting different dependencies tree
In my two projects, I have defined devDependencies for optional-features as
"@ember/optional-features": "^1.3.0",
But when I do npm ls after npm install in both projects, I get ...
0
votes
0
answers
28
views
Highcharts setting wrong translate position for bar dataLabels
I'm using Highcharts to display a bar chart, and a dataLabels at the left for positive value and left for negative value. as shown in below image
The problem here is that when the bar data value is ...
0
votes
0
answers
28
views
EmberJS Model relationship not updating
Let's say I have a company that contains n employees. From my Ember application I add a new employee using a POST to the server. Assuming everything went okay, I know want my company.employee list to ...
0
votes
0
answers
10
views
my data from different adapters is stored in a single model how do i store them in different models
Ember Data: cli 4.12
I have created 2 modles user and repo and 2 adapters with same name user and repo also 2 serializers with same names.
I am calling store.findAll 2 times in a single route's model ...
0
votes
0
answers
20
views
moment-timezone returns undefined while using embroider compat build in ember.js
Original Error
cannot read properties of undefined (reading 'load') error TypeError: Cannot read properties of undefined (reading 'load')
created moment-timezone.d.ts file and type added for moment-...
-1
votes
0
answers
25
views
caught TypeError: requireNode is not a function at window.require
''' ( function (win) => { const { requireNode, require: requireAMD } = win; if (requireAMD) { win.require = (...args) => { try { return requireAMD(...args); } catch(error) { if (error.toString()...
-1
votes
0
answers
45
views
How to implement infinite scroll in columns?
Here I have a work scenario where I need to add columns based on Dates and granularities (last 48 hrs - 15 mins).
In this case, I need to create -
2 Columns (eg- 10/04/2023 and 09/04/2023) and
192 ...
0
votes
1
answer
20
views
How to update an environment variable based on another environment variable in Ember JS?
I have a use-case wherein in environment.js, we have an environment variable - isMobile which by default is set to false and channelCode is set to WEB.
let ENV = {
isMobile: false,
channelCode: &...
0
votes
0
answers
28
views
Nothing is getting displayed on webpage while using ember.js
I am building a simple web application using ember.js ,but in the webpage ,nothing is displayed ,in the console the following error is being displayed.I am using mirage as the back end
rsvp.js:26 ...
0
votes
0
answers
28
views
Adding elements to DOM from Chrome extension corrupts EmberJS app [duplicate]
There is a ul present in ember js and I am trying to manually insert another element into it. However, once I do it, almost the entire application stops working and DOM elements start behaving ...
0
votes
1
answer
27
views
Ember-ace not works on clear ember project with ember-infinity installs as dependency
Can someone explain why ?
I have no warnings in console. So, i need ember-infinity for my project, but don't know how to force to work ember-infinity with ember-ace.
Using ember-infinity: 2.3.0 and ...
1
vote
0
answers
22
views
In Ember, in resetController function, why is transition undefined sometimes?
I am using Ember 3.16
I have an Ember application which has multiple routes.
For one of the routes, let's call it route x, I need it to reset only when it leaves the page. So I use resetController and ...
0
votes
1
answer
54
views
why .pushObject method is undefined in ember
"model.pushObejct is not a function" error. i am trying build an to do list app..and while updating an object it says model.pushObject is not a function.
<ul class="hand">
{...
0
votes
1
answer
45
views
How do I successfully use jquery in emberjs
I'm attempting to change the value of an ember 'Input Helper' whenever a separate 'Input Helper' is clicked. The array of js objects is displayed in a child component as is the two Input Helpers the ...
0
votes
1
answer
52
views
this. Get( "object. Value") not working properly in ember.js
Sometimes this.get("object.value") not working properly in ember.js. But this.get("object").value is working. Any reason?
this.get("object").value = "values" /...