Learning about Power Platform integration best practices
In this section, we will present some best practices for frontend as well as for backend integration. Using some of the presented integration patterns and solution approaches is certainly useful, but not using them in the best way can cause various issues, especially regarding the solution’s overall performance. Let’s have a look at some of the best practices.
Frontend integration
When deciding on which frontend integrations to use, there are some important best practices that should be followed in order to achieve a robust, maintainable, and performant solution:
- When embedding third-party content into Dataverse table forms, consider placing it on separate form tabs, not on the primary tab, to avoid waiting for the content to load.
- While jQuery is a very handy JavaScript library, it is not recommended to use it to call the Dataverse API. Use the client-side Web API to make calls to Dataverse...