Sunday, October 16, 2011

XML Schema and Chart Samples for CRM on MSDN

Smaples:
http://msdn.microsoft.com/en-us/library/ee704599.aspx
Visualization Data Description Schema for XML

Chart Samples for CRM on MSDN

Document on MSCRM SDK : Visualization (Chart) Samples

Customer Effective Blog with many examples on CRM 2011

link to the blog is this : Customer Effective Blog
It has samples and explanations on:
  1. Form Printing.
  2. Form Customization
  3. Changing Form appearance
  4. Duplicate Detection and Fuzzy Logic
  5. Using FetchXml from JavaScript
  6. Sorting Chart on an aggregated Value.
  7. Explanation of Field Level Security
  8. Working with Multi Value Parameter in SSRS

A tool to edit the Ribbon and a SiteMap Editor

Here is a tool on CodePlex to do the pain in the neck activities on the CRM:
MS CRM 2011 : Pragma Toolkit : Ribbon, Site Map Editor

Sunday, October 9, 2011

The Javascript Grid Editor

There is a Havascript library to edit CRM Records on a the Grid.
It is Opensource and created by CRMEntropy, here : http://crmgrideditor.codeplex.com/

Customer Care Solution by Microsoft

http://dynamics-crm.pinpoint.microsoft.com/en-us/applications/customer-care-accelerator-for-microsoft-dynamics-crm-2011-12884914795

Showing Alerts on CRM Form notification Area using JScript

it is possible to Add alerts to the Alert list control on a form.
The code is very simple :

The Alerts are ordered by priority.

var mep=1;

function set_alert()
{
var notificationsArea = document.getElementById('crmNotifications');
if (notificationsArea == null)
{
alert('div not found');
return;
}

if (mep==1)
{
notificationsArea.AddNotification('mep2', 2, 'source', 'Warning message');
notificationsArea.AddNotification('mep3', 3, 'source', 'Info message');
notificationsArea.AddNotification('mep1', 1, 'source', 'Critical message');
mep=2;
}
else
{
notificationsArea.SetNotifications(null, null);
mep=1;
}
}