Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

How to copy text into Power BI embedded QnA field from another text box?

I am using Power BI embedded QnA feature in my application, this feature is awesome but it cannot answer questions asked in completely natural language by the user as every user is not familiar with the data model. I am trying to intercept this feature with a chatbot where the string of text first goes into the chatbot and then it is manipulated in a way which is understood by Power BI and then pasted into the Power BI QnA box to return the answers to user's questions. Is there a way to copy text from one text box to QnA box in Power BI embedded. I am trying to do it using javascript code, using the 'div' id of the QnA box but it isn't working. Has anyone tried it or knows if it is possible?

 

Below is the code that I'm using, where the text box that I have created has id 'source' and QnA box of Power BI embedded has id 'utteranceContent'

 

<input id="source" type="text" oninput="copyData('source', 'utteranceContent')" /> <hr style="clear:both;">

 

<script type="text/javascript">
function copyData(sourceId, targetId) {
var data = document.getElementById(sourceId).value;
document.getElementById(targetId).innerHTML = data;
}
</script>

0 REPLIES 0

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.