Sometimes we could need to see more than 50 records per page in our CRM views. On the OOB configuration, the max number of records per page is set to 50, however this can be changed in the "Options" section, see how to do this below: NOTE: Changing this option will affect all views in … Continue reading Changing max number of records per page in views
Tag: how
Lookups and Javascript – Dynamics CRM
// Get Lookup var LookupField = Xrm.Page.data.entity.attributes.get("FieldName"); // Get Lookup ID // NOTE: To avoid possible errors, verfy that the lookup has value with: // If(LookupField != null) var LookupID = Xrm.Page.data.entity.attributes.get("FieldName").getValue()[0].id; // Get Lookup Value Name // To avoid possible errors, verfy that the lookup has value with: // If(LookupField != null) var LookupName … Continue reading Lookups and Javascript – Dynamics CRM
Generating log in Javascript
Sometimes, while debugging code in JavaScript, many developers start using Alerts to show information and to confirm that their logic is correct. However, after reading the MS Dynamics SDK, I found that is better to use the console.log to generate a detailed log of information. To use it, simply add this line of code plus … Continue reading Generating log in Javascript
How to edit SiteMap
Prerequisites XRM Toolbox. Before editing the Site Map, make sure you have a backup of it. To do this, you can create a new Solution and add “SiteMap” by clicking on: Add Existing --> Sitemap. As a last step, export the solution. If something goes wrong, just import it again and all issues in the … Continue reading How to edit SiteMap
How to add Components to a Solution
1. Open an Unmanaged Solution in your CRM environment by going to: e Settings > Solutions 2. Once you open your Solution, click on Components 3. In this Example, we’ll add Account Entity, but only with several fields and views. To begin, click on: Add Existing: 4. Click … Continue reading How to add Components to a Solution