Frank Weigel

Results 96 comments of Frank Weigel

That's a consequence of the sync loading of model implementations when preloading models during component loading. We have conflicting goals here: not to (further) bloat the sap.ui.core preload with bigger...

And my questions are: - where do you create the fragment, in what hook / at what time? - and how do you get access to `oView`? Is it the...

Exactly. By implementing sap.ui.core.IAsyncContentCreation, your component claims that it is prepared to handle framework-controlled content creation in an async manner. As discussed in #3112 with @Thodd, this includes the root...

No, `UIArea` and `UIComponent` are two different things and there's no `getContent` for the `UIComponent`. Maybe IDEA only recognizes the method name `getRootControl` and mistakenly shows the documentation for `UIArea`?

I think one possible reason for the remaining syncXHR might be the loading of CLDR data. Or do you see any *.js XHRs in the network tab (there should be...

Reg. `async init`: please be aware that the framework will not wait for the promise returned by your `init` method. The purpose of `IAsyncContentCreation` rather is to allow `createContent` to...

@terezamch I guess you refer to b917c2524c0eb7cac6712e75452da0a7f33120f3 which implements theme auto-switching for the SDK / Demokit and which can already be seen on https://openui5nightly.hana.ondemand.com. I'm not sure whether this is...

@uhlmannm and @pksinsik can you please take a look at this? V4 never returning `null` or `undefined` is okay for TypeScript, but the others should align on a signature that...

Hi Dominik, please check Christoph's 2nd comment. That's exactly one of the problems he reported as a consequence of switching to async. I only took a short look into this...

The documentation section that you mentioned exactly describes what I assume to be the problem in your (faulty) version: accessing the resource model from a view's `onInit` hook might fail...