Frank Weigel
Frank Weigel
"object" is not the best choice, indeed. But it's also not `sap.m.Table`. It rather should be `sap.m.Table | sap.ui.table.Table | sap.ui.table.TreeTable | sap.ui.table.AnalyticalTable`. Strictly spoken, the last two are not...
It is explicitly allowed to modify composite parts in `onBeforeRendering`, that's one of the main purposes of that hook. When the control and its parts are finally rendered, `RenderManager` notifies...
I rather would model them as real typescript modules: ```ts declare module "sap/base/i18n/ResourceBundle" { export default class ResourceBundle { getText(key:string): string static create() : ResourceBundle } } ``` This allows...
No, it's not a bug, it's heritage. When spec owners decide to change the spec in an incompatible way, you can't blame projects that have built something against the old...
Just an update: Chrome 48.0.2564.103 is available now and according to first tests, it fixes the sync XHR 304 response.
First, the Chromium project postponed the removal by one milestone (M54, planned for October 2016), then abandoned it due too much negative feedback. See https://bugs.chromium.org/p/chromium/issues/detail?id=605517#c25 .
#3331 unfortunately does not mention in what context the i18n file still was requested synchronously. Was it due to texts in the manifest? The newest internal backlog item is CPOUI5FRAMEWORK-303...
This is currently not possible with the generation approach. The relationship between return type and parameters is only described in text, not in a formal, machine readable way. What can...
> that is something that happens deep inside the UI5 build systems, unlikely to even be based around nodejs tech stack even Exactly. Once we're done with our migration to...
I can reproduce it. It seems to be an issue in the `TabStrip.js` code itself. The `_activateItem` method expects a `jQuery.Event` object (which has a `isDefaultPrevented` method), but the code...