Check this post. Provides an useful example: http://nishantrana.wordpress.com/2010/11/04/adding-my-first-custom-button-in-crm-2011/
Author: Cornel Croitoriu
Website launched
Our website just launched. Please check it out: http://biz-forward.com . Thanks!
Format date fields in CRM
Special thanks to Andriy a33ik Butenko for this post. // Formats the date into a certain format Date.prototype.Format = function(format) { var d = this; var f = “”; f = f + format.replace( /dd|mm|yyyy|MM|hh|ss|ms|APM|s|/|-|,|./ig , function match() { switch(arguments[0]) { case “dd”: var dd = d.getDate(); return (dd < 10)? "0" + dd :… Continue reading Format date fields in CRM
Authors
Our crew just got bigger. Let’s welcome our newest authors. Here’s a brief description about each author. Octavian CUCUTA – Senior Software Developer – and a very good friend of mine. Tavi is the developer that thinks in general terms and the code he writes can serve more than just the problem it was written… Continue reading Authors
Areas of interest
These are the areas we will cover in our posts: Microsoft Dynamics CRM Microsoft Dynamics NAV Microsoft Dynamics AX Microsoft SharePoint Microsoft Office Microsoft SQL Server C# WPF WCF Silverlight ASP HTML JavaScript .NET Framework Windows 7 Cloud – Windows Azure Windows Mobile Windows Phone 7 Visual Studio 2010 Microsoft Surface Project Management Product Management… Continue reading Areas of interest
Rebranding
Our blog will “suffer” some minor adjustments. It won’t be just a CRM blog from now on, but a Microsoft Business Solutions blog, with topics about Dynamics CRM, NAV, AX, SharePoint, Office, .NET (C#, WPF, WCF, Silverlight, asp), HTML and JavaScript and much more. Stay tuned, we are gonna move your business process forward, for… Continue reading Rebranding
Change attachment file limit
More details about this issue can be found here: http://rahulsalunkhe.wordpress.com/2010/08/26/increasing-the-crm-4-0-attachment-size-limit . This should work under CRM 2011 as well.
CRM Usage Report
A very nice thread about this issue, written by David Jennaway – MVP, can be found here.
Generate a new Guid in JavaScript
As easy as that 🙂 // Generate new Guid function Hexa4() { return (((1+Math.random())*0x10000)|0).toString(16).substring(1); } function GenerateGuid() { return (Hexa4()+Hexa4()+”-“+Hexa4()+”-“+Hexa4()+”-“+Hexa4()+”-“+ Hexa4()+Hexa4()+Hexa4()).toUpperCase(); } // USE var guid = GenerateGuid(); alert(guid);
Create a custom filtered lookup view in runtime – CRM 2011
Starting CRM 2011 you can filter a certain lookup view based on related entities or other system/custom views. But sometimes this is not enough. For example, if you wanna make a custom filtered view, that uses several filters, you can use the following approach. Starting scenario (all of the completed lookup fields will be used… Continue reading Create a custom filtered lookup view in runtime – CRM 2011