Anant Dalela
11/21/2025, 2:52 PMRajat Hans
11/21/2025, 11:32 AMClément Contamine
11/20/2025, 11:29 AMsameer mehra
11/20/2025, 10:14 AMThomas Karbe
11/19/2025, 1:04 PMTj Wood
11/19/2025, 12:41 PMGreg Lindstrom
11/18/2025, 5:52 PMRaffaella Gozzini
11/18/2025, 4:57 PMRaffaella Gozzini
11/18/2025, 4:51 PMRaffaella Gozzini
11/18/2025, 4:25 PMEmir
11/18/2025, 10:24 AMChris Potts
11/18/2025, 10:24 AMEoghan Bonass
11/17/2025, 3:03 PM10c7cd9ac21a00d8.
Could someone look into this and explain why this happened?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 PM