Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Localization doesn't work for Microsoft Dynamics CRM Online. #9018

Open
SergeyMaltsev opened this issue Apr 18, 2024 · 0 comments
Open

Localization doesn't work for Microsoft Dynamics CRM Online. #9018

SergeyMaltsev opened this issue Apr 18, 2024 · 0 comments
Assignees
Labels
bug Something isn't working forum Issues from forum high-priority Urgent to have fixed large-account Reported by large customer localization OEM OEM customer premium

Comments

@SergeyMaltsev
Copy link
Contributor

SergeyMaltsev commented Apr 18, 2024

Forum post

Microsoft Dynamics CRM Online. has self and globalThis available.

When the application starts loading, the 'globalThis.bryntum' object is available but then after some seconds the CRM online starts to load its components which also use 'globalThis' object and 'globalThis.bryntum' becomes 'undefined'.

Proposed solution

Prefer globalThis where available for localization storage.

const global = typeof globalThis !== 'undefined'
    ? globalThis
    : typeof self !== 'undefined' ? self : null;

Note:

Please check for the issue described here: https://forum.bryntum.com/viewtopic.php?p=144976#p144976

@SergeyMaltsev SergeyMaltsev added bug Something isn't working premium forum Issues from forum localization large-account Reported by large customer OEM OEM customer labels Apr 18, 2024
@SergeyMaltsev SergeyMaltsev self-assigned this Apr 18, 2024
@matsbryntse matsbryntse added the high-priority Urgent to have fixed label May 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working forum Issues from forum high-priority Urgent to have fixed large-account Reported by large customer localization OEM OEM customer premium
Projects
None yet
Development

No branches or pull requests

2 participants