This site helps you to develop in the easy way Microsoft Dynamics CRM.
Microsoft Dynamics CRM includes many examples to develop for Microsoft Dynamics CRM.
Thursday, September 10, 2009
Hot to get page name in crm,js
Hi, Here is an example how to get page name.
function GetPageName() { var sPath = window.location.pathname; var sPage = sPath.substring(sPath.lastIndexOf('/') + 1); return sPage; }