Aditya
Aditya
TFDThoughtSpot For Developers
Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
Please enter your own TS cluster and liveboardId
7 replies
TFDThoughtSpot For Developers
Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
https://codesandbox.io/p/sandbox/c59tvd?file=%2Fsrc%2FApp.tsx%3A11%2C71 I tried it out here and it is working fine. Can you please check this?
7 replies
TFDThoughtSpot For Developers
Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
That's weird that should not happen let me check.
7 replies
TFDThoughtSpot For Developers
Created by Valhalla on 3/14/2025 in #dev-help
Tim - Hello 👋 I'm embedding a liveboard, and I...
Hi @Valhalla Supporting custom actions for liveboard is in our roadmap but currently we do not support this and you will have to create a button in your host application to support your usecase. cc : @utsav.kapoor @Nicolas
7 replies
TFDThoughtSpot For Developers
Created by Érico on 2/12/2025 in #dev-help
Érico - Hello guys!We're embedding our first T...
Hey @Érico did you tried using pre-render while embedding Liveboard? It will help you in loading your liveboard shell much earlier and can help you in getting better performance. Documentation for the same - https://developers.thoughtspot.com/docs/prerender#_prerender
31 replies
TFDThoughtSpot For Developers
Created by Ashot on 3/11/2025 in #dev-help
Ashot - @shikharTS hello, I’m embedding a Thou...
Hey @Ashot Can you please tell me what is your cluster version?
10 replies
TFDThoughtSpot For Developers
Created by rumana-hf on 1/6/2025 in #dev-help
Hey Team, We have embedded the App using
Hi @Suvash Please add linkOverride flag to true in your embed method to make it work for open in new tab when you right click on the tab. Also, you can disable opening of new link in new tab using this flag - disableRedirectionLinksInNewTab to true Relevant documentation - https://developers.thoughtspot.com/docs/Interface_SearchViewConfig#_disableredirectionlinksinnewtab https://developers.thoughtspot.com/docs/Interface_SearchViewConfig#_linkoverride Let me know if this doesn't works for you.
17 replies
TFDThoughtSpot For Developers
Created by Delvin on 2/9/2025 in #dev-help
Chaim Platonov - Hey,I'm writing code to sync ...
@pallav PTAL
30 replies
TFDThoughtSpot For Developers
Created by Alexandre Hausmann - Wex on 2/6/2025 in #dev-help
Alexandre Hausmann - Wex - Hey guysI need as...
Hi @Alexandre Hausmann - Wex If I understood your requirement correctly, you want to pass a path in AppEmbed and wanted to go to a liveboard with a specific tab using vizId. In that case you can pass your path like this - path: '/insights/pinboard/03c55690-352d-4a25-b6d0-7b6fcce70daa/4ff627a4-3ff1-44db-b4a6-cee4cf214aa9' and it will redirect you to the liveboard tab in which this vizId exists.
8 replies
TFDThoughtSpot For Developers
Created by rumana-hf on 2/7/2025 in #dev-help
rumana-hf - Hey there. I've been trying to quic...
Hi @rumana-hf Can you please add {object-id}?{ts-query-params} after your URLs for Liveboard, Liveboard Visualization and Answer, add {object-id} after your SpotIQ Analytics page and add {path} to your generic link URL. This will not come up in your URL but its there just to inform user that they can add these fields as well.
5 replies
TFDThoughtSpot For Developers
Created by Prathic_BD on 2/3/2025 in #dev-help
Prathic_BD - I am trying to add an event listen...
10 replies
TFDThoughtSpot For Developers
Created by Prathic_BD on 2/3/2025 in #dev-help
Prathic_BD - I am trying to add an event listen...
You can do something like this - <AppEmbed ref={embedRef} onALL={() => {console.log('hello world!')}} />
10 replies
TFDThoughtSpot For Developers
Created by Murali Krishna on 12/13/2024 in #dev-help
Hello team,
Hi @Murali Krishna if you want to add an authentication mechanism to validate if the user is valid or not, you can call the auth token api to fetch the token for that user. If the user is not valid, you can throw out the error. If the user is valid, then you can use this token to call download csv API
5 replies
TFDThoughtSpot For Developers
Created by Ivana Kaufmanova on 11/28/2024 in #dev-help
Hello,
You can choose wether you want to have a authentication mode for embed or not. If you do not want it you can set it to AuthType.None. Or if you want to add some authentication methods(Cookiless, SAML) you can do that as well
2 replies
TFDThoughtSpot For Developers
Created by Simon on 11/28/2024 in #dev-help
Hi. If someone could advise, that would
You have to hide all the actions present in the menu to hide the 3 dot menu. This is for all users. You can pass it conditionally to configure it for your specific users.
15 replies
TFDThoughtSpot For Developers
Created by Simon on 11/28/2024 in #dev-help
Hi. If someone could advise, that would
Yes
15 replies
TFDThoughtSpot For Developers
Created by Simon on 11/28/2024 in #dev-help
Hi. If someone could advise, that would
Whereever you are calling LiveboardEmbed pass the hidden actions array
15 replies
TFDThoughtSpot For Developers
Created by Simon on 11/28/2024 in #dev-help
Hi. If someone could advise, that would
Yes
15 replies
TFDThoughtSpot For Developers
Created by Simon on 11/28/2024 in #dev-help
Hi. If someone could advise, that would
Hi @Simon you can pass the actions you want to hide it as part of hiddenActions array in your LiveboardEmbed method - const embed = new LiveboardEmbed("#your-own-div", { frameParams: {}, /*param-start-liveboardId*/ liveboardId: "16c1d488-d8fc-4326-9422-80e3db8a56ff", hiddenActions: [Action.Share], });
15 replies