<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Q&amp;amp;A not able to type or edit the text box in embedded report in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4909933#M64215</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/883001"&gt;@V-yubandi-msft&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response, i was able to load the Q&amp;amp;A section on the different page, i am still not able to understand what is causing it but i guess it is something to do with react implementation on that page itself, again Thanks for the checklist&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2025 15:03:36 GMT</pubDate>
    <dc:creator>ChetanK004</dc:creator>
    <dc:date>2025-12-29T15:03:36Z</dc:date>
    <item>
      <title>Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4908873#M64200</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have embedded a report using react power-bi-client library and have got a Q&amp;amp;A implemented in one of the page in report, these are my configuration:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;        return {
            type: 'report',
            id: reportId,
            embedUrl: embedUrl,
            accessToken: accessToken,
            tokenType: models.TokenType.Embed,
            viewMode: models.ViewMode.View,
            permissions: models.Permissions.Read,
            settings: {
                layoutType: models.LayoutType.Custom,
                customLayout: {
                    displayOption: models.DisplayOption.FitToWidth
                },
                filterPaneEnabled: true,
                navContentPaneEnabled: true,
                hideErrors: false,
                panes: { pageNavigation: { visible: true, position: models.PageNavigationPosition.Left } }
            },
            autoEmbedOnContentLoaded: false
        };
    };&lt;/LI-CODE&gt;&lt;P&gt;The issue am facing is the edit in my iframe doesnot work, it blinks rapidly and doesnot allow to type, am able to apply predefined questions, but not able to edit them too&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have seen this working in playground as well as service and desktop, just that the typing doesnot work in embedded report, not able to understand why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I am not using a standalone Q&amp;amp;A, so i dont have that config , i am using a regular report with Q&amp;amp;A inbuilt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 12:05:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4908873#M64200</guid>
      <dc:creator>ChetanK004</dc:creator>
      <dc:date>2025-12-26T12:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4908895#M64201</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1) React re-rendering the embed container (most common)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If your component re-renders and the div that hosts the report is recreated/replaced, the iframe will momentarily lose focus → “blink” → you can’t type.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Fix&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Make sure the embed container div is stable (same element instance).&lt;/LI&gt;
&lt;LI&gt;Don’t change its key.&lt;/LI&gt;
&lt;LI&gt;Don’t rebuild the embed config object on every render.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Example patterns that help:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Put the embed config behind useMemo.&lt;/LI&gt;
&lt;LI&gt;Only call powerbi.embed() once (on mount) and not on every state change.&lt;/LI&gt;
&lt;LI&gt;Keep the embed container outside of conditional rendering.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;2) A parent element is capturing keystrokes (global keyboard handlers)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Common culprits: app-level shortcuts, search boxes, hotkeys (e.g., keydown listeners), or libraries like react-hotkeys, MUI handlers, etc.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Symptom&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Cursor flashes/blinks in the Q&amp;amp;A box.&lt;/LI&gt;
&lt;LI&gt;Typing does nothing or gets immediately “canceled”.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Fix&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Temporarily disable global key handlers when the report has focus.&lt;/LI&gt;
&lt;LI&gt;Or ignore events when event.target is inside the Power BI iframe container.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;3) A transparent overlay/div is sitting on top of the iframe intermittently&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This can happen with loading spinners, skeletons, tooltips, modals, or “click-catcher” divs.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Check&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In devtools, inspect the page while trying to click/type.&lt;/LI&gt;
&lt;LI&gt;Look for an element overlaying the iframe (z-index, position absolute).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Fix&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Remove overlay while report is interactive.&lt;/LI&gt;
&lt;LI&gt;Ensure overlays use pointer-events: none if they must remain visible.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;4) Using ViewMode.View + Permissions.Read is fine, but confirm you’re not in a restricted embed scenario&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Q&amp;amp;A in a report should still accept input in view mode, but if your embed token / tenant settings restrict certain features, you might see partial behavior.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Check&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Does it happen for &lt;EM&gt;all users&lt;/EM&gt; or only some?&lt;/LI&gt;
&lt;LI&gt;Does it work if you embed the same report in a plain HTML page (no React state changes)?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If plain HTML works, it’s almost certainly React/focus/overlay.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;5) CSS causing focus/scroll/flicker issues&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Certain CSS on parents can cause weird iframe behavior:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;transform: translateZ(0) or any transform on ancestor containers&lt;/LI&gt;
&lt;LI&gt;overflow: hidden with animations&lt;/LI&gt;
&lt;LI&gt;CSS transitions on the iframe container&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Fix&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Remove transforms/animations on ancestors of the report container.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Keep the report container simple: no transforms, no animated resizing.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#800000"&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 12:58:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4908895#M64201</guid>
      <dc:creator>johnbasha33</dc:creator>
      <dc:date>2025-12-26T12:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4909929#M64214</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;, has pointed out the correct information. Please go through his response and let us know if you need any additional details or clarifications.&lt;/P&gt;
&lt;P&gt;Thank you for your valuable input,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;BR /&gt;Yugandhar&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 14:55:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4909929#M64214</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-12-29T14:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4909933#M64215</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/883001"&gt;@V-yubandi-msft&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the response, i was able to load the Q&amp;amp;A section on the different page, i am still not able to understand what is causing it but i guess it is something to do with react implementation on that page itself, again Thanks for the checklist&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/585150"&gt;@johnbasha33&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 15:03:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4909933#M64215</guid>
      <dc:creator>ChetanK004</dc:creator>
      <dc:date>2025-12-29T15:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4910649#M64228</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="744" data-end="986"&gt;Glad to hear it worked on another page. That does suggest the issue is specific to the React implementation on the original page (likely re rendering or an overlay affecting focus).&lt;/P&gt;
&lt;P data-start="744" data-end="986"&gt;&lt;BR data-start="927" data-end="930" /&gt;Feel free to reach out if you need any further help.&lt;/P&gt;
&lt;P data-start="744" data-end="986"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="993" data-end="1015"&gt;Regards,&lt;BR data-start="1001" data-end="1004" /&gt;Yugandhar&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2025 05:27:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4910649#M64228</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-12-31T05:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Q&amp;A not able to type or edit the text box in embedded report</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4912241#M64275</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Everything should be clear now. If you need any additional information or further clarification, please feel free to let us know.&lt;/P&gt;
&lt;P&gt;&lt;BR data-start="232" data-end="235" /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 04:38:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Q-amp-A-not-able-to-type-or-edit-the-text-box-in-embedded-report/m-p/4912241#M64275</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2026-01-05T04:38:50Z</dc:date>
    </item>
  </channel>
</rss>

