Archive

Posts Tagged ‘locale id’

Reading Language Code (LCID) in CRM 2011

February 24, 2012 Leave a comment

Hi,

Here is the JScript to get the LCID (Locale Id) of User & Organization Base Language

 

var currUserLcid = Xrm.Page.context.getUserLcid();

var orgLcid= Xrm.Page.context. getOrgLcid();

 

Below is the MSDN link contains list of LCID (Locale Id’s) of CRM 2011

CRM 2011 LCID Chart

 

Hope it helps 🙂

 

Advertisement