Auxiliary Force Technology

Category: Tutorials

  • Power Apps: Use FetchXML Instead of OData In JavaScript

    OData is awesome but there are some scenarios in which using FetchXML just makes more sense. For example, when searching NN Relationships. The following code uses FetchXML by encasing the query in the “backtick” character. This code searches a custom “account_contactNN” many-to-many intersect using an Account ID to find all related Contacts. You may need…

  • Dynamics CRM Clone A Record With JavaScript

    A very common request we often get is to have a clone record button added to an Entity. The JavaScript code tends to be the bigger issue than adding the ribbon button so to keep this post clean and direct the following code with cycle through every Field (unless one is excluded) to create a…

  • Dynamics CRM JavaScript Code Basics

    Dynamics CRM JavaScript programming is actually far easier than most people would believe with so much code being re-used so frequently. While an exact percent would be impossible to achieve, it could be said that probably 80% of the code anyone will need for JavaScript Form customization can be can found in the following list. ———————————————-Get…