Hanno Fellmann

Results 16 comments of Hanno Fellmann

My solution, although using implementation details. However, I would like to see a controlled range selection. Use this to access the selected cell range, then select your data accordingly. ```jsx...

I found a very hacky solution, that apparently works. Add to `initializeKeycloak`: ```javascript function initializeKeycloak(keycloak: KeycloakService) { return () => { if (!environment.production) { if ((window as any).keycloak) { Object.assign(keycloak,...

![image](https://cloud.githubusercontent.com/assets/10139607/25232010/39adb05c-25da-11e7-9fcb-58581aa82381.png) There is no TypeScript section in my preferences.

> Hi @nmdung28 , please close this issue if the answers make sense. Thanks! Do you feel this solution using internal API in state is solid? Every minor change may...

I see. My preferred solution would be: 1. Open a new issue to clear up if this library is really unmaintained 2. If so, publish the fork on npm in...

I was really surprised this is not implemented - seems like the most important feature and huge benefit!

I received this answer from the mailjet support: - you can make a total of 500 calls per 10-second time window - you can have up to 50 individual emails...

To my limited understanding: - the mandate is only required for direct debit, I have removed the check for transfers - the debitor id is not required, and incorrectly serialized...

Although the root cause (accessing detached views) should be fixed in the framework, what fixed it for me was to move the tutorial start to `onAttachedToWindow`: ```kotlin override fun onAttachedToWindow()...

@simon-feamzy 1. I found the correct calculation to be: `if (options.useSafelyMarginBottom && rowBottomY + rowHeight + columnSpacing + safelyMarginBottom >= maxY && !lockAddPage) onFirePageAdded();` You were missing columnSpacing. 2. You...