Hi
I have developed custom PCF Control in Typescript . I have used some React JS code to open React-Modal as popup window in Control Button Click.
This custom PCF Control is running fine when i am running it locally i.e from Visual Studio code. But when i deployed PCF Control to my Dynamics 365 environment.
And tried to access control in CRM Form then getting below error show in screenshot.
Basically i have used React js inside my Typescript project. I have used React-Modal component for showing popup window .
i did some analysis and found that when i remove Modal tsx file from my PCF Control and deployed simple component on Dynamics 365 platform then this error is not coming .
Can anyone tell me what i am doing wrong while calling Modal component or in its contructor.
So below is my piece of code i wrote it down to call my Modal component. Basically passing one parameter to Modal Component.
<MyModal inputABN = {this.state.inputValue}/>
And below is constructor of My Modal component.
export class MyModal extends React.Component<ModalProps, any> {
constructor (props: ModalProps) {
super(props);
this.state = {
showModal: false , inputABN: props.inputABN
};
............................
Any help will be appreciated .
Thanks
Hi @SumitThakran ,
I have the feeling that there are some missing pieces in understanding your issue.
I don't know what you mean by "I tried to access the control in CRM Form". The only way you can interact with the PCF control from a form is by changing the value, show/hide, enable/disabled, the same as you work with every OOB control.
The PCF control is bounded to one control on a form, and one or more attributes from your entity.
In order to open modal content, you have there two possibilities from inside the PCF component:
- you can open your PCF component full-screen, by using control.mode.setFullScreen()
- you can use the PopupService to open further dialogs: https://docs.microsoft.com/en-us/powerapps/developer/component-framework/reference/popupservice
It case this doesn't help, maybe you can tell more, about how you try to access the PCF from the Form.
Kind regards,
Diana
----------
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Usually this error is caused by the webpack complication failing and so your control's index.js class not being available at runtime.
I suspect that the reason it is working when you remove some part of the code - is that there is an error in the code (syntax error, missing import etc.) that is preventing the code from building.
Look carefully at the output when you run npm start
Hope this helps
Hi Diana,
Below is my CRM Form on which i added my PCF Control to text field i.e ABN and this PCF control is also bounded with this entity attribute. You can refer below screenshots
When i click on error that error window comes which i have already shared in my above message.
This PCF Control not working in Dynamics 365 but when i run it locally in VS Code. There its working fine.
So not sure what's the problem
Thanks
Hi Scott,
If webpack compilation failing and index.js not available at runtime , then why i did not got any type of error while running this PCF Control in VS Code.
In VS Code , its running fine and there is no error coming.But when this control is imported in Dynamics and added in Form then its not working.
Also you mentioned to watch npm start . below are lines generated in VS code when i run command :- npm start
PS C:\Sumit\Desktop Files\CRM\PCF\Controls\ABNVerificationControl> npm start
> pcf-project@1.0.0 start C:\Sumit\Desktop Files\CRM\PCF\Controls\ABNVerificationControl
> pcf-scripts start
[12:44:39] [start] Initializing...
[12:44:39] [start] Validating manifest...
[12:44:39] [start] Validating control...
[12:44:43] [start] Generating manifest types...
[12:44:43] [start] Compiling and bundling control...
[BABEL] Note: The code generator has deoptimised the styling of C:\Sumit\Desktop Files\CRM\PCF\Controls\ABNVerificationControl\node_modules\react-dom\cjs\react-dom.development.js as it exceeds the max of 500KB.
[Webpack stats]:
Hash: 820fdf6cb7f27cf48276
Version: webpack 4.42.1
Time: 31575ms
Built at: 06/23/2020 12:45:15 PM
Asset Size Chunks Chunk Names
bundle.js 4.96 MiB main [emitted] main
Entrypoint main = bundle.js
[./ABNVerification/ABNControl.tsx] 3.38 KiB {main} [built]
[./ABNVerification/ABNModal.tsx] 3.17 KiB {main} [built]
[./ABNVerification/index.ts] 3.6 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-0.js] 3.63 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-1.js] 3.5 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-10.js] 3.87 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-11.js] 3.87 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-12.js] 4.09 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-13.js] 4.09 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-14.js] 3.88 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/fabric-icons-15.js] 3.98 KiB {main} [built]
[./node_modules/@uifabric/icons/lib/index.js] 1.54 KiB {main} [built]
[./node_modules/react-dom/index.js] 1.32 KiB {main} [built]
[./node_modules/react/index.js] 189 bytes {main} [built]
[./node_modules/util/util.js] 18.6 KiB {main} [built]
+ 833 hidden modules
[12:45:15] [start] Generating build outputs...
[12:45:15] [start] Starting control harness...
Starting control harness...
Mapping / to "C:\Sumit\Desktop Files\CRM\PCF\Controls\ABNVerificationControl\node_modules\pcf-start"
Serving "C:\Sumit\Desktop Files\CRM\PCF\Controls\ABNVerificationControl\out\controls\ABNVerification" at http://127.0.0.1:8181
Ready for changes
can you point out any issue in webpack compilation that could help me to sort this issue out.
Thanks
Looking at that npm start output I see no mention of ABNVerifysPCF.ABNVerifys or even ABNVerifys are you sure you the issue isn't either
a) a namespace issue (the error message references ABNVerifysPCF yet the start output references ABNVerification and doesn't reference ABNVerifysPCF
b) a missing import within the index.ts file?
Hi Ben,
Oh sorry its my mistake. Actually i created another duplicate project "ABNVerification" to do some R&D at my end for fixing this issue.
So i might have shared npm start output of another duplication project. But i can share npm start output of original project too "ABNVerifys" but i checked that too and its output is same too.
So i think namespace issue is not there.
you mentioned that i might be missing import in index.ts file. Let me explain my file hierarchy so that you might get some idea about files.
There are three files in my PCF Control project.
a) index.ts
b) ABNControl.tsx
c) ABNModal.tsx
Obviously index.ts file is first one to start with. Index.ts file import my ABNControl.tsx file and then ABNControl.tsx file import third file i.e "ABNModal.tsx"
Second file is having one textbox and one button . On click on this button , it will invoke my third file . Third file is basically React Modal component which will open a pop up window and show some more details.
I did some hit and trial methods at my end to solve this issue and found that invoking constructor issue is coming due to third file only. Becuz when i remove third file from my PCF Control and deploy it on Dynamics 365. Then this error does not come But if i include third file then this error comes in Dynamics 365 .
So i think there is something wrong while invoking third file from second file. Which i am not able to figure it out.
Below is my piece of code in second file which invokes third file
<MyModal inputABN = {this.state.inputValue}/>
Below is Third file which is basically Modal component and its constructor code
Hi Everyone,
FYI , my issue is sorted . Below line of code was not working in Dynamics 365 so i removed it and its working now.
ReactModal.setAppElement('#app-root');
I added this line of code becuz i was getting some warning message in console window. As now i have removed it so still i am getting warning message as shown below
webpack://pcf_tools_652ac3f36e1e4bca82eb3c1dc44e6fad/./node_modules/warning/warning.js?:34 Warning: react-modal: App element is not defined. Please use `Modal.setAppElement(el)` or set `appElement={el}`. This is needed so screen readers don't see main content when modal is opened. It is not recommended, but you can opt-out by setting `ariaHideApp={false}`
Can you anyone suggest line of code that will remove this warning message.
Thanks
Looking at the docs - it seems that ReactModal attempts to hide the root app content when the modal dialog is open. I don't think this is going to work with PCF because you cannot access any nodes outside of the PCF component.
You could set it to the id of a div in your PCF component - but I that wouldn't achieve what it is trying to do.
http://reactcommunity.org/react-modal/accessibility/
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages