Today I found one question in MS CRM Development Forum to format Left navigation item, we can easily do this with JS. Just use below code on form load. I have tested this in contact form to form “More Addresses” var Item=document.getElementById(‘navAddresses’); if(Item!=null){ Item.style.fontWeight = ‘bold’; Item.style.color = ‘#ff0000’;} and result will be as below
There is an increase of 27% in SAP CRM, 36% in Dynamics CRM and decrease of 18% in Salesforce jobs around the world in the month of June. Source : http://jobgraphs.com/crm-softwares-demand-comparison/
I am regular visitor of ms CRM forums, I found this question many times, to hide MS CRM gird button. Which cannot be implemented through supported customization. We can implement this through unsupported customization. For example we want to hide assign button on opportunity grid toolbar. So we can do this by writing script to hide this button on Homepage.aspx… Read more »
Sometime we need to get all activities related to specific account or contact. We can easily do this by Querying activitypointer entity based on regardingobjectID. you can use below function to get all activity related to account. You just need to pass Crm service object and Accountid to this function Public BusinessEntityCollection FetchActivityList(CrmService _Service,Guid AccountID) { QueryExpression _Query =… Read more »
Today I watched a great video in channel9, which details the new advanced Developer Extension features in new SDK released. The new SDK includes a code generator utility using which we don’t need to write number of lines of codes. You just need to run this utility and passing some parameters for example Authentication Type, server etc. This utility will… Read more »
MS CRM 4.0 New SDK is available now with new exciting additions like Advanced Developer Extensions,Authentication for Microsoft Dynamics CRM Online you can download it from http://www.microsoft.com/downloads/details.aspx?FamilyID=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&displaylang=en
Some time we need to show associated view (1:N or N:N) in Iframe. I found a good article in https://community.dynamics.com/blogs/crmjimwang/comments/28067.aspx written by Jim Wang. After doing some little changes it worked like a charm for me. You can use this code for any associated view (1:N or N:N). You just need to get Left navigation item name that you can… Read more »
MS CRM 4.0 does not provide filtered lookup facility, but we have some couple of options that we can use to implement filtered lookup in ms crm 4.0 like Change lookupsingle.aspx page http://crm.georged.id.au/post/2008/02/16/Filtering-lookup-data-in-CRM-4.aspx 2. Buy stunware filtered lookup tool http://www.stunnware.com/default.aspx?area=products&group=fld4&subarea=fld4-download 3. Using JS Code http://advantageworks.blogspot.com/2008/02/pseudo-filtered-lookup-dialog-in.html 4. Writing plugin. http://mscrmfilteredlookup.codeplex.com/ You can choose option that suite… Read more »
As in my previous http://mahenderpal.wordpress.com/2009/12/10/tooltip-for-ms-crm-fields/ Post I have discussed how to set Tooltip for CRM Fields, I want to extend this post. Tooltip For Left Navigation Items sometimes we need to set custom tooltip for left navigation items, so we can use the same title attribute to set but for left navigation link you have to set title for child element… Read more »
I found a question here to set left navigation link as default for ms crm record, while opening ms crm form. http://social.microsoft.com/Forums/en-US/crmdevelopment/thread/9dd557d3-3828-441b-a6dc-e6c481fdb8c9 We can easily do this through JS, we just need to get ID of particular left navigation item which we can get IE Dev toolbar or Developer Tools Paste this code on form onload event var NavItem=document.getElementById(“Paste LeftNavigation… Read more »