Clément Contamine
12/05/2025, 4:41 PMSasha Bratyshkin
12/03/2025, 11:05 PM7267d8e2-dfaf-4fb2-8ebe-0acd2a982f72
the export id;
e51282442155a21e397ee243a46f47775b825a46
this is the endpoint I'm trying to call:
<https://housing-cloud.cloud.gooddata.com/api/v1/actions/workspaces/${workspaceId}/export/tabular/${exportId}>
this works for other visualizations, but not for this one for some reasonPhilip Asp
12/02/2025, 7:39 AMNaveen Chaurasia
12/01/2025, 3:57 PM“No location in your visualization. Add a geo attribute to your visualization, or switch to another visualization.”Could you please clarify: What exact data format is required for latitude and longitude? ◦ Should they be separate attributes (Latitude and Longitude)? in data model field mapping it is not giving option for selecting data as geo cordintaes can u please look into it and help me
Adeoluwa Balogun
12/01/2025, 2:43 AMRaffaella Gozzini
11/26/2025, 4:21 PMDheeraj Satokia
11/25/2025, 2:55 PMChris Potts
11/25/2025, 11:44 AMAnant 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 PM