I have created following code, and I have included this as web resource on the CRM 2011 form to be called on field onchange event of lookup field. Everything is working fine before the $.ajax({... line and then I have an error “$ is undefined”. I am not very familiar with scripting so please help.

function GetAddress() {

    var accountId;
    var dataArray;
    var accountRequestUrl;

    if (crmForm.all.regardingobjectid.DataValue != null) {

        dataArray = crmForm.all.regardingobjectid.DataValue;
        accountId = dataArray[0].id;

        if (typeof GetGlobalContext == "function") {
            var context = GetGlobalContext();
            accountRequestUrl = context.getServerUrl();
        }
        else {
            if (typeof Xrm.Page.context == "object") {
                accountRequestUrl = Xrm.Page.context.getServerUrl();
            }
        }

        accountRequestUrl = Xrm.Page.context.getServerUrl();
        accountRequestUrl += "/XRMServices/2011/OrganizationData.svc/AccountSet(guid'" +
            accountId + "')";

        crmForm.all.maxlife_addressname.DataValue = accountRequestUrl;

        GetAccountRecord(accountRequestUrl);
    }
    else {
        alert("null");
    }

}

function GetAccountRecord(accountRequestUrl) {

    $.ajax({
        type: "GET",
        url: accountRequestUrl,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        error: function (request, textStatus, errorThrown) {
            alert("Error occurred: " + request.responseXML + "from url " + requestUrl);
            return;
        },
        success: function (data) {
            var results = data.d["results"];
            var AccountValue = new Array();
            for (resultKey in results) {
                AccountValue.push(results[resultKey]);
            }

            FillValues(AccountValue);
        }
    });
}
link|improve this question
feedback

2 Answers

up vote 17 down vote accepted

$ is shorthand for jQuery. jQuery is not natively included in CRM2011, so you'll have to add a web reference yourself. Simply create a JavaScript web resource for jQuery, paste in the jQuery code, and then add the web resource to your form. Also, in order to get the web resource to load on your form, you need to specify a function for CRM to call from it. Since in this case jQuery is a library and you won't be calling any of its functions onload, simply use isNaN (a native JavaScript function) as the function to call.

link|improve this answer
Thnaks. Sound like a solution, but can you give me some instructions how to do this. Pleaseeeee. – MAXA Mar 2 '11 at 14:20
2  
This post should get you most of the way there. If you still need more help I will try to post additional info later. gtcrm.wordpress.com/2011/02/15/… – Polshgiant Mar 2 '11 at 14:34
2  
If this script is being called from the 'OnChange' event of a form control, then there is no need to call anything on-form-load. Just adding the scripts to the form will automatically load them in the order they appear on the form's script customization grid. The only time you'd need to call a function to ensure a script is loaded is if a ribbon script has a dependent script. (I hope it is clear what I am saying) – Luke Baulch May 13 '11 at 2:47
feedback

JQuery native support is not available in Microsoft CRM 2011. It needs to be added included as a web resource. This is exact why JavaScript is unable to recognize ‘$’ symbol. For info on how to add JQuery to CRM 2011 please see http://thecrmworld.wordpress.com/2011/05/15/how-to-add-jquery-support-to-crm-2011/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.