Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
10 views

Joi validation of emberjs belongsTo

ember 5.12 Joi 17.13.3 my emberjs model aModel has a field which is defined like this: @belongsTo('anotherModel', {async:true, inverse:null}) anotherModel; I want to validate, as part of my Joi ...
ZacMoeShop's user avatar
0 votes
0 answers
17 views

How to resolve Mirage mocking HasMany relationship error for Ember JS

Ember JS framework. I am trying to test my route.js . I created route-test.js as below which is running fine but I need to use mirage mocking to mock foo model in route-test.js. When I tried mocking, ...
Aman Kushwaha's user avatar
0 votes
0 answers
14 views

ember: computed propertied | ember-macto-helper/computed vs @ember/objects

I am moving away from ember-macro-helpers/computed in my project and starting using computed from '@ember/object' I have following code rowData: computed('addEndpointsData', function () { const ...
codingenious's user avatar
  • 8,663
0 votes
1 answer
31 views

Proper way to migrate @computed decorators

I have a model Post that used a @computed decorator like this @hasMany('comment', {async: true}) comments; @computed('[email protected]') get authorNames(){ let comments = this.comments; ...
mate89's user avatar
  • 166
1 vote
2 answers
58 views

LinkTo fails on click

I generate a link as: <td><LinkTo @route="assets.asset" @model="{{asset.id}}">{{asset.id}}</LinkTo></td> The link is generated correctly. When I click ...
Andrea Campolonghi's user avatar
1 vote
0 answers
131 views

Slow Ember build in docker container

I'm attempting to Dockerize my local development setup to make it much simpler to onboard new developers and ensure a common local environment for all. But i am running into build performance issues ...
RGog's user avatar
  • 76
0 votes
0 answers
27 views

Pollyjs delay request using timing: Timing.fixed(200) is not working in ember test environment

Pollyjs delay request using timing: Timing.fixed(200) is not working in ember test environment, but in development mode it delays request by 200ms
Aswath shobi's user avatar
0 votes
1 answer
33 views

How to bootstrap Angular application from Ember js

I want to bootstrap angular webapp from ember js and for that, we have imported angular bundle files into index html of ember js and trying to bootstrap angular by <app-root> </app-root> ...
user3098308's user avatar
0 votes
0 answers
37 views

Updating a Single Attribute in Ember-Data Model Also Resets Relationships

I'm working on an Ember.js application where I need to update a single attribute (views) on a book model using Ember Data. However, when I call save() on the model, the relationships of the book (like ...
eva joly fabiola yepgwa takedo's user avatar
0 votes
1 answer
42 views

Multi-tab state persistence in webapp

Having done this for awhile, I’d love a quick sanity check: in a web app using the History Web API is there any way to replicate state persistence across multiple primary nav tabs like you might ...
drew covi's user avatar
  • 891
0 votes
0 answers
25 views

Why accessing a components root element using this.$(#rootElementId) returns zero elements?

DOM <div id="ember3705" class="ember-view"> <div id='childelement'></div> </div> I'm trying to execute this js code this.$('#ember3705') in component.js of ...
Allan's user avatar
  • 140
0 votes
1 answer
59 views

How to migrate Ember web application to Angular module by module

We have one web application developed in Ember js and we want to migrate it to latest Angular, but we want to migrate it module by module. so we need to coexist Angular and Ember both. and build ...
user3098308's user avatar
0 votes
0 answers
56 views

Error: Assertion Failed: expected container not to be destroyed

Reproduction Probably related to https://github.com/emberjs/data/issues/5570 test('test', async function (assert) { assert.dom('item').exists({ count: 2 }); await click('.menu'); await click('....
Dzi's user avatar
  • 11
1 vote
1 answer
26 views

In qunit, how to query the scrollbar height or detect if a scroll bar is present on an element?

I'm writing tests for my Ember components. One of the more delicate issues is getting a specific element to scroll while not generating scroll bars elsewhere. I'm trying to write a test that will tell ...
Display name's user avatar
  • 1,552
0 votes
2 answers
63 views

Background Video Not Autoplaying

Not sure if this is an issue with the local server ember generates, or if it is just a normal thing local servers do, but currently I have a video that I play in the background of my page that does ...
Jazzwal's user avatar
  • 35
0 votes
2 answers
51 views

Local npm dependency in Ember.js 5.8

I need custom linting rules for my Ember 5.8 project. Ember 5.8 uses ESLint 8.57 and ESLint allows custom rules via Plugin, see this tutorial. Step 8 of said tutorial reads as follows: You might want ...
crusy's user avatar
  • 1,512
0 votes
1 answer
52 views

How to create component in v2 addon using command line

I have v2 addon and I was create files manually, I want to be create in terminal to create components, service, utils,…etc. I tried in v2 addon path of create component but it will get error! PS C:\V2 ...
THENNARASU R's user avatar
0 votes
1 answer
31 views

Ember-classic-decorator not support in v2 addon components, but works fine in normal addon components

I have v2 addon to use dependencies “ember-classic-decorator”: “^3.0.0”, import in my addon component get error message. But normal addon component It’s works fine. app.js:96 Ember.onerror handler - ...
THENNARASU R's user avatar
0 votes
0 answers
105 views

ember problem - ENOENT: no such file or directory, open 'c:\c:\ @warp-drive

I am trying to do an 'ember build' in a a 'ember new project' but i am getting all the time this strange message. " c:\Users\User\Desktop\ember-course\my-todo-app2>ember build Environment: ...
TiagoT's user avatar
  • 51
0 votes
2 answers
53 views

How to select an input field in ember js via chrome console

Currently there is an input field that displays a search drop down as soon as I click on it , but If I store the field as a global variable and try temp1.select() in chrome console ( temp1 is the name ...
Tharun Reddy's user avatar
0 votes
0 answers
109 views

How to Add a Search Banner Component to the Custom Homepage in Discourse forum?

I am trying to add a search banner component to the new custom homepage feature in Discourse. I have followed the instructions to set up the custom homepage and added the plugin outlet, but the search ...
Pushpinder Singh's user avatar
0 votes
1 answer
50 views

Render only child template in ember js

I have an Ember.js application, and I have a route called parent/child. When I render the parent/child template, I only want the content inside the parent/child template to be displayed. I don't want ...
Anonymous's user avatar
0 votes
1 answer
79 views

Configure xunit output of Testem in Ember.js

I use Ember 5.6.0. Running ember test --silent --reporter xunit > ember-test-result.xml outputs an XML with the following content: <testsuite name="Testem Tests" tests="439" ...
crusy's user avatar
  • 1,512
0 votes
1 answer
28 views

How to implement rectangular highlight tool on ember

I want to implement a rectangular highlight tool as seen on google.com -> Settings -> Send Feedback -> Capture Screenshot -> Highlight or Hide info. Seems very complicated and I'm not sure ...
agustinvaca's user avatar
0 votes
1 answer
50 views

Why these ember data models are different from one another?

I am struggling for some time with this issue. Ember 1.12. One model passed is working fine, but another is not as it should. Here is the relevant parts from route(search.js) - model(params) { this....
Ramix's user avatar
  • 31
0 votes
1 answer
57 views

packageRules definition for embroider to allow component from @glimmer/component to work in ember 5.8

Just upgraded from 5.4 to 5.8. Now I'm getting this error. \src\node_modules\.embroider\rewritten-app\routes\components\case-tools\template.hbs: Unsafe dynamic component: this.tool in node_modules\....
Display name's user avatar
  • 1,552
0 votes
1 answer
64 views

Why is tabindex=0 still used in HTML even when a feature flag is false in Ember.js?

I'm working on an Ember.js project where I've implemented a feature flagging system to control certain UI elements based on specific conditions. However, I've encountered a situation where even when ...
Sefali gupta's user avatar
0 votes
0 answers
48 views

The "path" argument must be of type string. Received type object in ember js

I updated the ember from 2.7 to 3.2 using command ember-cli-update and after this I run the project using npm start then i'm getting error on terminal type here ERROR Summary: - ...
Asif Raza's user avatar
0 votes
1 answer
48 views

In an Ember.js Octane Acceptance Test, how do I query and/or set the test window height?

I have an acceptance test to ensure that a PDF viewer on a specific route isn’t accidentally sized incorrectly. Due to a convergence of prior choices and the way the embed tag works, the viewer can ...
Display name's user avatar
  • 1,552
1 vote
1 answer
29 views

Ember.js octane acceptance test

I don't understand why fillIn can't find 'data-test-code-nav-selector'. I have paused the test and using the devtools I copied this DOM excerpt. It displays as expected. As you can see, the select tag ...
Display name's user avatar
  • 1,552
0 votes
0 answers
41 views

How to call a component from a controller file?

I'm new to ember js, It may feel like a dumb question, but still: I've already defined a component say {{pq-component}}, it works fine, when called from a .hbs file. But when I try to call it from a ....
S TARUN's user avatar
0 votes
2 answers
75 views

How to dynamically add click handler to Ember Octane component - dynamic "on" modifier

I have a situation where I need to make a component and it has some logic to either render as a button or as a DIV depending on if it has a link. {{#let (if this.hasLink (component "...
SoluableNonagon's user avatar
1 vote
0 answers
89 views

Gridstack does not adhere to dynamic drag handles

I'm currently using Gridstack in an Ember project and want to have a custom drag handle. I know this can be implemented by setting the draggable: { handle: '.my-custom-drag-handle' } in the options. ...
Vishaal Agartha's user avatar
1 vote
1 answer
35 views

CORS Ember.js C#/.net SessionId Header

I have an Ember.js SPA that's calling a .net service via AXIOS. Everything was working until I started checking the SessionId header to return a 401 when it's expired. As long as the token is valid, ...
Display name's user avatar
  • 1,552
0 votes
0 answers
18 views

How to a made query param for refreshed one table with filtered attributes

Context: I have a table of inputs and outputs for a person and with these values ​​I calculate the total hours worked and check whether the total time requirement has been met. Example: Monday = 8 ...
LucasCDev's user avatar
0 votes
0 answers
22 views

How can I resolve "Parsing error: Cannot use import statement outside a module" in Ember.js?

My project uses ember-cli: 3.28.6, node:12.13.1 I am getting at least 100 of this error, in files that don't even have import statements, in files that were automatically generated by ember-cli, etc. ...
rhoffen's user avatar
  • 21
0 votes
0 answers
28 views

Accessibility on ember outlet elements

I have an ember web application, with a simplified structure of landing page like this: <container> <header></header> <main> {{outlet}} </main> &...
Lilit Mazmanyan's user avatar
0 votes
1 answer
443 views

How to Resolve 'Uncaught TypeError: Cannot read property 'charAt' of undefined' Error in Vendor.js When Focusing First Error Field on Form Submission?

I'm currently grappling with an issue regarding the focusing of the first error field within a form upon submission. Despite successfully implementing functionality to focus on the first error field ...
Himanshu Javiya's user avatar
0 votes
2 answers
54 views

Injecting store brings "Cannot read properties of undefined" on ver5.7/5.3 with Typescript

I created services/store.js with default export, then I added "@service store;" in route. Right at that line the following error occurs: TypeError: Cannot read properties of undefined (...
rykantas's user avatar
1 vote
1 answer
45 views

Inherit session token between 2 apps as long as one of them has been signed in Ember.js

I have 3 web apps written in ember.js /appA, /appB and /AppC in the same domain and they connect to the same api with a token. I have this configuration: // under app/session-stores/application.js ...
Torprendido's user avatar
0 votes
0 answers
75 views

JWT authentication out-of-the-box solution for typed Ember?

Is there any quick and simple solution to provide JWT token authentication for Ember with Typescript enabled? Although this issue sounds like quite a routine, most modules and documentations refer to ~...
rykantas's user avatar
1 vote
1 answer
41 views

Ember.js 5.4 how to update component variable when session store is updated

Ember.js Octane and JavaScript (not TS) I have a service to access the session store. When I add or remove a specific key, I want my top level component to toggle visibility for the nav-bar. I have ...
Display name's user avatar
  • 1,552
0 votes
1 answer
28 views

Ember.js component button may have one of a fixed listed of values, how to make it use minimum width for longest string?

Single button, it may display the text "Show", or "Hide". Toggling between show and hide causes the width of the button to change. I want the button to take up as much width as it ...
Display name's user avatar
  • 1,552
0 votes
1 answer
126 views

How to use frontend app within virtual host proxypass?

I am using docker with three containers - backend/frontend/admin. I would like to use such proxy pass to navigate either to admin page or frontend - <VirtualHost *:80> ServerName cookie.com ...
Ramix's user avatar
  • 31
0 votes
0 answers
45 views

Ember Js app Cannot find module 'exists-sync'

I have an ember app on windows. it was working fine but next time when I open the app and tried to run the ember server it showns below error:- Cannot find module 'exists-sync' Require stack: C:\...
Sudheer Gupta's user avatar
0 votes
1 answer
122 views

Ember.js did-update function not tirggering

Ember 5.x I have a parent component, Cases, and two child components. The CaseList has many items and the user can select one. This works. And the onCaseSelect is called. I want to have the NavBar see ...
Display name's user avatar
  • 1,552
0 votes
0 answers
41 views

How to re render component when the argument changes from the table component in Ember.js?

Im a beginner in Ember.js framework, and Im having trouble updating a component from another one. I have this table component with the checkbox rows, and everytime the number of checked rows its ...
Emily's user avatar
  • 161
1 vote
1 answer
122 views

Uncaught Error: Could not find module `@ember/application` imported from `web-app/app`

Why am I encountering the error 'Uncaught Error: Could not find module @ember/application ' when trying to import it from 'web-app/app' in my Ember.js project? Specs: npm: 6.14.5 node: v14.4.0 ember-...
Arun Kumar's user avatar
0 votes
2 answers
233 views

Node v20.10.0 is not tested against Ember CLI on your platform

I'm getting an error when I try to init a new ember project. I just installed ember using this command: npm install -g ember-cli then I ran: ember init to create my project, but it throws the ...
User Dll32's user avatar
1 vote
1 answer
125 views

Missing Resource Type: received resource data with a type 'events' but no schema could be found with that name

I have a basic Rails 7 application that uses the jsonapi-resources gem. On the Rails side of the application, I implemented a simple structure of two resources - events and event_categories. They are ...
Colibri's user avatar
  • 1,195

1
2 3 4 5
480