Tuesday, January 19, 2016
Monday, January 18, 2016
Wednesday, December 30, 2015
Wednesday, December 16, 2015
Wednesday, November 25, 2015
CRM Useful JScripts
Have started development on CRM 2015 Online.
My reference links are below:
https://lakshmanindian.wordpress.com/2012/05/12/crm-2011-jscripts/
My reference links are below:
https://lakshmanindian.wordpress.com/2012/05/12/crm-2011-jscripts/
Tuesday, November 3, 2015
Customizing the Dynamics CRM views
Would like to change the leads view with following criteria.
- · Lead should be filter by Country. Country is not rendering in views.
- · Leads should be filter by created by. Not by owner.
- · Leads should be filter by company name.
- · Is it possible to see his colleagues changes/entries in entities?
Finally Publish the customizations. Done.
An unknown function with name 'substringof' was found.
While doing some client script have faced the issue.
$.each(searchWords, function (key, word) {
if (key) filterWords += "%20and%20";
// double up any single quotes
word = word.replace(/'/g, "''");
// url escape word
word = encodeURIComponent(word);
filterWords += "contains(ProductName,'" + word + "')";
});
// create base portion of the URI
var queryUri = serviceUri + "Products?" +
"$select=ProductID,ProductName&" +
"$top=100&" +
"$filter=" + filterWords;
// configure datajs to allow cross domain callbacks using JSONP
OData.defaultHttpClient.enableJsonpCallback = true;
// run query
OData.read(queryUri, function (queryResponse) {
// for each result, add to list
$.each(queryResponse.value.results, function (o) {
$("#queryResultsList").append("
" + this.ProductName + "
");
Subscribe to:
Posts (Atom)







