I use aurelia-dialog in my web application and everything works fine.
But when I export (glup export) this application, I have this error when loading:
Error: XHR error (404 Not Found) loading…
I can’t get the aurelia dialog plugin to work properly in my custom aurelia plugin. The idea is to use my custom aurelia plugin for common modals that I can re-use for different aurelia projects.
I have setup a mininmal plugin project that gives me…
I need to create multiple tables of same html structure but data and columns are different for each table. So I want to create one table component which has common html structure and can get columns and data as parameter , I'm not sure which is the…
Hopefully the title makes this fairly self-explanatory.
Just a bit of background, I create and launch an aurelia modal dialog which appears on top of the parent window from where it is launched.
Is there a way to make the background (parent) window…
Considering changes described here Aurelia Dialog breaking changes we are trying to export our established project based on JSPM and TypeScript so it can be started without this error:
system.src.js:1612 Uncaught (in promise) TypeError: t.substr is…
Aurelia Dialog puts all the UI elements for itself at the root of the document (or very near).
Is there a way to configure where the dialog places itself in the document?
(I am trying to make the dialog be part of my router page rather than part of…
We have some TypeScript code using the Aurelia framework and Dialog plugin that we are trying to test with Jasmine, but can't work out how to do properly.
This is the source function:
openDialog(action: string) {
this._dialogService.open({…
I'm trying to make a generic, reusable dialog that we can use for basic data entry on simple objects -- phone, email, etc.
In general, I have a helper class that opens the dialog, a generic dialog using aurelia-dialog, and then a vm that gets…
I've simply installed the aurelia-dialog plugin, version 1.0.0-beta.1.1.0, and registered it with aurelia, but I'm getting an error:
aurelia.use
.plugin('aurelia-dialog');
dialog-configuration.js:65 Uncaught (in promise) TypeError:…
How do I go about unit testing a method that calls the DialogController? I want to test that this.controller.ok() was called.
ReprocessLotDialog.js
@inject(DialogController)
export class ReprocessLotDialog {
constructor(dialogController) {
…
I installed aurelia-dialog npm install aurelia-dialog --save. Which installed the version "version": "2.0.0-rc.3".
I modified main.ts by adding .plugin(PLATFORM.moduleName('aurelia-dialog')) ;
to aurelia.use in configure function.
I…
We tried to upgrade aurelia-dialog from beta.3.0.0 to rc.1.0.3 and found that 2 problems in all our dialog views:
The header does not have width 100% as it was before, it only shows header text, looks like "width:-webkit-fit-content" affected…
Issue:
I've been trying to figure out how to use the "position" configuration settings of the Aurelia-Dialog plugin on my Aurelia based website, but I can't figure it out cannot find a single example on all of the Internet of Things.
A very vague…