welcome to XRM blog

Keep in touch with latest CRM/ERP articles

To remain competitive your organisation must be efficient across the business process spectrum. To do so you need to take sound decisions based on a balance between the cost and risk. To do so you will be heavily dependent on your content management in itself needs...

image
Blog
Term: Javascript
26 found

How do I format a Microsoft JSON date?

By Anshuman Trivedi on 11/27/2016

Recently in my current project as per requirement of client. I had to Format Microsoft JSON date.

Javascript
MS CRM 2016

How To Implement Pre-Filter In Lookup field In MSCRM 2016

By Anshuman Trivedi on 11/9/2016

I thought of writing this function for implementing Pre-Filter on Lookup field.

Javascript
MS CRM 2013
Dynamics CRM
MS CRM 2016

How To Generate Random Guid using Java Script in MSCRM 2016

By Anshuman Trivedi on 10/27/2016

Recently in my current project there were a 'guid' field as per requirement of client. I had to generate the guid in that field.

Javascript
MS CRM 2013
MS CRM 2016

Validate Multiple Date Fields By Passing Multiple Parameters in MSCRM 2016

By Anshuman Trivedi on 10/11/2016

Recently in my current project there were multiple date fields validation as per requirement of client. I had to validate them under some given conditions.

Javascript
MS CRM 2013
MS CRM 2016

Validate Alphanumeric value

By Ajay on 3/24/2014

Sometimes we have situations where we have to fill only alphanumeric value in the given field (like: password,user id etc). Alphanumeric value is a combination of alphabets and numeric value.

Javascript
Validation

Custom compare date validator

By xrmlabs webmaster on 11/1/2013

Sometimes we need to compare two dates as start date and end date where we need that end date must be greater than start date . If we use date format in mm/dd/yyyy then compare validator works well but if we use date picker using jquery or the date in dd/mm/yyyy format by any other way then compare validator does not work because it recognizes only dd/mm/yyyy format. To over come this problem a custom date compare validator should be used. Following is a simple application where a custom compare validator has been used .

.Net
Javascript
JQuery

Java Script Scrolling a message at the status bar of the web page

By xrmlabs webmaster on 4/24/2013

By this simple  piece of java script code you can scroll a message on the webpage .The message is called on the body load of the page .

Javascript
Java script
scrolling message

Check Box Utilities in ASP.NET

By xrmlabs webmaster on 4/24/2013

By this article I want to just describe the utility of check box and compare to the radio buttons . In the radio button list user is restricted to select at least one selection user can not escape the choice but in the check box list user is not restricted to select a choice even he can go for no choice also .

.Net
Javascript
ASP.NET
Check box

Java Script Wishing according to time span

By xrmlabs webmaster on 4/24/2013

By this simple piece of java script code you can say good morning , good evening ,……. To the logged in user . The logic is quite simple the web page takes the system time and according to the time part the messages  are created and displayed so  messages are displayed regardless of the country time.

Javascript
Java script

MS CRM 2011 Retrieving Entity Type Code or ETC

By xrmlabs webmaster on 4/19/2013
If you are looking to get the Entity Type Code or ETC (as it is generally known as) dynamically for any entity name in your web resource in MS CRM, you should use the MetaData service to do so. The MetaData service in MS CRM 2011 will retrieve all the Meta information about an entity. This information includes the display name of the entity, the logical name of the entity and all other information about its relationship status etc. However the information that we are interested in here is the "ObjectTypeCode". 

How to build your MetaData service? For building a MetaData service you can use sample code provided in the CRM SDK itself. (samplecode\js\soapforjscript\soapforjscript\scripts). The name of the file is sdk.metadata.js.
This javascript file has a function by name RetrieveAllEntitiesAsync. This function fetches all the entities with with their MetaData information. On success this function returns you entityMetadataCollection. Now all you need to do is to loop over entities and get the Object Type Code. Please follow the code below to get the Object Type Code or ETC.

function successRetrieveAllEntities(entityMetadataCollection) {
   for (var i = 0; i < entityMetadataCollection.length; i++) {
      var entity = entityMetadataCollection[i];
      var objTypeCode = entity.objectTypeCode;
   }
}

This is a supported way of getting etc or ObjectTypeCode of an entity. 
Hope this helps. 
Javascript
Entity Type Code
Javascript
MetaData service
MS CRM 2011
ObjectTypeCode
Blog Calendar
Blog Calendar List
2023 May  36  5
2023 Apr  17  5
2023 Mar  27  6
2023 Feb  42  5
2023 Jan  25  4
2022 Dec  93  7
2022 Nov  214  2
2022 Sep  13  1
2022 Aug  25  2
2022 Jun  7  2
2022 May  3  2
2022 Apr  5  2
2022 Mar  1  1
2022 Feb  2  1
2022 Jan  1  1
2021 Dec  3  1
2021 Nov  2  1
2021 Oct  1  1
2021 Sep  10  1
2021 Aug  37  5
2021 Jul  36  4
2021 Jun  727  5
2021 May  30  3
2021 Apr  1375  3
2021 Mar  145  5
2021 Feb  1278  7
2021 Jan  1607  9
2020 Dec  330  7
2020 Sep  63  3
2020 Aug  489  3
2020 Jul  96  1
2020 Jun  61  3
2020 Apr  45  3
2020 Mar  11  2
2020 Feb  27  5
2020 Jan  34  7
2019 Dec  17  4
2019 Nov  16  1
2019 Jan  23  2
2018 Dec  43  4
2018 Nov  68  3
2018 Oct  18  3
2018 Sep  950  11
2018 Aug  7  2
2018 Jun  12  1
2018 Jan  68  2
2017 Sep  580  5
2017 Aug  17  1
2017 Jul  17  2
2017 Jun  62  2
2017 May  21  1
2017 Apr  35  2
2017 Mar  121  4
2017 Feb  675  4
2016 Dec  194  3
2016 Nov  621  8
2016 Oct  284  10
2016 Sep  540  6
2016 Aug  39  1
2016 Jun  1836  6
2016 May  109  3
2016 Jan  71  2
2015 Dec  407  6
2015 Nov  4  1
2015 Oct  13  1
2015 Sep  1425  6
2015 Aug  14  1
2015 Jul  128  2
2015 Jun  10  1
2015 May  20  1
2015 Apr  30  3
2015 Mar  80  3
2015 Jan  5325  4
2014 Dec  17  1
2014 Nov  2254  4
2014 Oct  67  1
2014 Sep  106  2
2014 Aug  5176  1
2014 Jul  48  2
2014 Apr  2542  12
2014 Mar  288  17
2014 Feb  219  6
2014 Jan  1510  16
2013 Dec  21  2
2013 Nov  686  2
2013 Oct  256  3
2013 Sep  11  1
2013 Aug  40  3
2013 Jul  214  1
2013 Apr  57  6
2013 Mar  2202  10
2013 Feb  124  3
2013 Jan  294  2
2012 Nov  56  2
2012 Oct  493  10
Tag Cloud
Interested in our services? Still not sure about project details? get a quote