Questions tagged [aurelia]

Aurelia is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.

Aurelia
is a next generation JavaScript client framework that leverages simple conventions to empower your creativity.

Features

  • Forward-thinking
  • Modern Architecture
  • Two-Way Databinding
  • Extensible HTML
  • Routing & UI Composition
  • MV* with Conventions
  • Convention over Configuration
  • Broad Language Support
  • Testable

Community

Getting Started

Presentations

For the most up to date list refer to Awesome Aurelia (curated list of resources)

3402 questions
1
vote
1 answer

How can I import the Typescript Subscription type from the Aurelia Store Subscribe method?

I am following the documentation for Aurelia Store on how to subscribe to the stream of store changes. When I import the typescript Subscription type from rxjs I get a typescript compilation error: TS2322: Type…
Evan Larsen
  • 9,935
  • 4
  • 46
  • 60
1
vote
1 answer

Aurelia component slotting in markup for components model

I am building an autocomplete component. The plan is that I can slot in some markup for what I know the component is going to bind to. The idea is this could be any object rather than a simple display value and identifier. I have this working using…
4imble
  • 13,979
  • 15
  • 70
  • 125
1
vote
1 answer

Aurelia. Why is my nested repeat.for select not displaying data?

I have the below simple table displaying users and their roles. My nested repeat.for loops through a list of roles. My repeat.for="role of rolesData" does not display my data. Can you tell me why not? It only works if I add the 3rd repeat.for inside…
Jody 6
  • 25
  • 5
1
vote
1 answer

The EntityManager is closed?

I got error in line 167 it told me The EntityManager is closed? I used symfony2 and also aurelia. I put "processUserDetails" for going through it. private function processUserDetails($library, $entity, $oldDetails, $settings) { …
Tima mehro
  • 73
  • 1
  • 8
1
vote
0 answers

Aurelia Authorization ASPNET Core

So, I am starting a new Aurelia project running on AspNET Core 2.1 (Coming from DurandalJS) simple question. if I cannot use controllers to serve my views (which seems to be almost impossible to do with webpack, Aurelia, ect), and my views are…
JCircio
  • 525
  • 2
  • 7
  • 18
1
vote
0 answers

Webpack 4 configuration to build multiple Aurelia app inside same /src sharing common modules

We are having two Aurelia apps inside the same /src. One is the main app and the other is in the subfolder which uses some modules of the main app. Please see the file structure below to get an understanding. This was working fine before when we…
AeJey
  • 1,447
  • 20
  • 40
1
vote
1 answer

Aurelia and importing and using Highcharts X-range

I am using the Aurelia Framework and I just installed the Highcharts (v6.1.2) library for graphs etc. When I import Highcharts: import * as Highcharts from "highcharts"; I am able to use the lib with the standard graph types like column/bar/line…
Jason Dar
  • 41
  • 4
1
vote
0 answers

Link is not getting clicked if parent div has click event

I have a div which has a trigger click associated with it. Inside that div there is another div in which I have binded html using innerhtml.bind(Aurelia). That HTML part contains anchor tag. Now when I am clicking on the link nothing is happening.…
1
vote
1 answer

Aurelia and Open-Id-Connect plugin for IdentityServer

I have implemented local IdentityServer using Quickstart sample and connected Aurelia-Opein-Id-Connect to it. The setup works fine. The question I have is: When I run the Aurelia app as it is, its provide me with (Claims) name and website. But…
Khuzema
  • 251
  • 2
  • 4
  • 13
1
vote
2 answers

checkedChange event in custom multiselect-dropdown element

I have a multiselect-dropdown.html with it's own .js, as well as an edit-user.html with it's own .js. I'm trying to make it trigger a function in edit-user.html when I click a checkbox or a list-item in the multiselect-dropdown.html. I find the…
Kokefa
  • 85
  • 9
1
vote
1 answer

Aurelia Typescript/Webpack Skeleton + Progressive Enhancement

I'm attempting to leverage the progressive enhancement feature of Aurelia using the typescript/webpack skeleton, but I can't get it to work at all using the example shown in the docs. I'm sure it is because that example is using JSPM/SystemJS, but…
ryanulit
  • 4,983
  • 6
  • 42
  • 66
1
vote
2 answers

Can't install clean-webpack-plugin for nodejs

npm install --save-dev clean-webpack-plugin produces the following error: npm ERR! path /home/dovetail/dealware/node_modules/latest/node_modules/npm/node_modules/dezalgo/node_modules/asap npm ERR! code ENOENT npm ERR! errno -2 npm ERR! syscall…
Norm Strassner
  • 225
  • 3
  • 11
1
vote
2 answers

Aurelia: Inheritance of view and view-model

I am building an Aurelia app which will basically allow users to show different lists for different resources. These lists share a couple of functions like a toolbar with search and refresh capabilities and a paginated list of resources. I created…
Patrick
  • 179
  • 1
  • 8
1
vote
1 answer

Order of operations for @bindable

If I have a child control (or grandchild in this case) that looks like this: When can I expect regionId to be available? The docs sound like bind and then attached happens so shouldn't…
Joe
  • 5,389
  • 7
  • 41
  • 63
1
vote
2 answers

Changing Aurelia app's index page

I am working with an Aurelia app that should start at a different page than index.html, but I cannot find where to change that. Where in an Aurelia app can you set which landing page to use?
Norm Strassner
  • 225
  • 3
  • 11