-
I'm seeing weird behaviour when using containerless functionality. We're creating custom elements in a SVG container, which required us to use containerless tag to strip the custom element tags before…
-
We used to be able to do inline view resolution:
```html
```
This no longer seems to work, with errors such as
```text
Unhandled rejection Error: Unable to find module with ID: jobslist/jobsli…
-
Could be possible loading large FXML scenegraphs in background thread and then execute initialization code in UI thread?
-
QUESTIONS - If you want to ask anything about PageFactory - do it here :)
-
# Problem: Lifecycle callbacks are only available to the view/viewModel pair
I have an application that is closely tied to the DOM. I need to keep track of the size and position of the elements that …
-
I'm using WPF and the MVVM pattern.
When I'm executing anything that's long running i want to display a loading indicator so i created a `BusyViewModel` for that.
Now i want to get a new instance of …
-
Im encountering something really strange.
My site only loads in Microsoft Edge when Developer Tools (F12) are open.
Namely, if the debugger is connected, it seems to work, if I disconnect the debugger…
-
I was wondering if it's possible to "decorate" a viewModel with custom methods such that they will be available to the resulting view? Specifically if I had:
my-element.html:
```
```
my-element.js…
-
A button "ExecuteSelected" is bind to below method.
```
public IEnumerable ExecuteSelected()
{
return AllTestCases.Where(x => x.IsSelected == true);
}
```
and in e…
-
I understand as part of the new aurelia release there was some work done on minimizing the visual popping
We have code which looks like this
This has served us well in the past. Now we are…