nosTa - Hi Team,I am trying to figure out how...
Hi Team,
I am trying to figure out how BodylessConversation works. I can use the appendChild to add the returned div to my "chat" and it is shown. But the problem is, the returned div size is to small. I can adjust it with some min-height configurations, but even than the iframe itself is not scrollable. Is there any way we can get the actual size of the iframe?
const conversation = new BodylessConversation({
frameParams: {
width: '100%',
height: '100%',
},
worksheetId: worksheetId,
});
This is my call and here the appending:
responseDiv.container.style.height = '100%';
bodylessConversationWrapper.appendChild(responseDiv.container);
If I don't add 100% on the container height it's even smaller and I can't style it via CSS.
I also tried playing around with overflow scroll etc, nothing worked.
On the screenshot you can see it's cut off and no scrollable.
If I could get the scroll work the min-height approach would work for me. Any suggestions?
//edit:
The following error also occurs after the load of the container:
Refused to apply style from 'https://techpartners.thoughtspot.cloud/v2/assets/currency-69ead1aa.js' because its MIME type ('application/x-javascript') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

5 Replies
@Aditya can you check this?
cc @yuichirio_ha
I will take a look at why the scroll is not working for you. But a workaround which works for me generally is putting a
zoom: 0.7
on the container div
.Hi @ashish . I tried the zoom approach but it doesn't fit my needs. I have experimented further
If I add height: 100vh to the iframe settings and overflow: auto to the container.div it is scrollable.
frameParams: {
width: '100%',
height: '100vh',
},
I see, you could also set
height
to fixed height to prevent a really long scrollbar.
FWIW, the bodyless
is now available as an example on github for any code references you may need. https://github.com/thoughtspot/developer-examples/blob/main/visual-embed/spotter/spotter-agent-embed/src/thoughtspot.tsxGitHub
developer-examples/visual-embed/spotter/spotter-agent-embed/src/tho...
Example apps/solutions for Developers using ThoughtSpot - thoughtspot/developer-examples
Thanks, I will take a look and come back to you, latest tomorrow