Brunno Araujo
11/13/2025, 4:26 PMMichael Perlberg
11/13/2025, 4:19 PMIan Bryan
11/12/2025, 4:44 PMVictor Bjorn
11/11/2025, 1:31 PMprivate async loadScriptAsModule(url: string, id: string): Promise<any> {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.type = 'module';
script.src = url;
script.id = id;
script.onload = async () => {
try {
const module = await window.eval(`import('${url}')`);
resolve(module);
} catch (err) {
reject(err);
}
};
script.onerror = reject;
document.head.appendChild(script);
});
}
Authentication setup:
private setupGDBackend() {
if(!this.gdBackend) {
console.log("setting up tiger backend");
this.gdBackend = tigerFactory()
.onHostname(this.apiService.getGoodDataBaseUrl())
.withAuthentication(
new TigerJwtAuthProvider(this.token,
this.notAuthHandler,
this.jwtIsAboutToExpiryHandler,
10)
);
}
}
That's how I set the context:
this.workspaceModule.setContext({
backend: this.gdBackend,
workspaceId: workspaceId,
});
I tried to remove the loaded workspace A script and load the proper workspace B script and set the context again, but it hasn't helped.
Could you please advise how to correctly re-initialize or reset the context when switching workspaces?
Thank you!Chris Potts
11/10/2025, 3:55 PMVáclav Slováček
11/10/2025, 9:15 AMnull in a table, then the attribute value itself is used instead? If so, can it be turned off?James Ekema
11/07/2025, 8:37 PMJames Ekema
11/07/2025, 8:18 PMNick Dysle
11/07/2025, 4:54 PMCian Cullinan
11/07/2025, 1:07 PMMitch Gammie
11/06/2025, 11:56 PMDasaDama
11/06/2025, 11:49 AMMasha Akatieva
11/05/2025, 10:07 AMZiad Metheni
11/05/2025, 8:49 AMVáclav Slováček
11/05/2025, 8:48 AMRaffaella Gozzini
11/03/2025, 6:39 PMRaffaella Gozzini
11/03/2025, 2:46 PMAman
11/03/2025, 11:18 AMVivek Kushwaha
11/03/2025, 6:22 AMRaffaella Gozzini
10/31/2025, 6:29 PMTim Cashion
10/31/2025, 3:48 PMRaffaella Gozzini
10/31/2025, 3:32 PMRaffaella Gozzini
10/31/2025, 12:37 PMMira Jill Yumul
10/31/2025, 3:57 AMSam Mayen
10/30/2025, 9:21 PMRaffaella Gozzini
10/30/2025, 5:27 PMRaffaella Gozzini
10/30/2025, 11:09 AMMasha Akatieva
10/30/2025, 9:50 AMAishwarya K
10/30/2025, 4:49 AMSlackbot
10/30/2025, 4:47 AM