I can't seem to get my Xrm variable working when I create .js code. Is there a library I need to include or a function I need to run first? Do I need to make sure that ClientGlobalContext.js.aspx is referenced correctly? I'm in a 'C++' mindset and just wondering if there is any sort of 'include' command that I need to be running.

My js file looks like this, and if I remove the 'window.parent.' from the 2nd function the code breaks if I call it.

///<reference path="C:\Users\steve.lee\Downloads\XrmPage-vsdoc.js"/>

if (typeof (SDK) == "undefined") 
{ SDK = { __namespace: true }; }

SDK.XRM = {
    getCurrentControl: function () {
        var currentControl = Xrm.Page.ui.getCurrentControl();
        if (currentControl == null) {
            alert("No controls currently have focus.");
        }
        else {
            alert("The control for the '" + currentControl.getLabel() + "' attribute currently has focus.");
        }
    },

    getCurrentGUID: function () {

        if (window.parent.Xrm.Page.data.entity != null) {
            var GUIDvalue = window.parent.Xrm.Page.data.entity.getId();
            if (GUIDvalue != null) {
                return GUIDvalue;
            }
            else {
                return null;
            }
        }
        else {
            return null;
        }
    },
 __namespace: true
};
link|improve this question

45% accept rate
Please add a code example or describe a specific error. – ccellar Dec 8 '11 at 18:46
The error was a generic javascript pop up which said that 'Xrm.Page.data.entity' is null or not an object – Steve Dec 8 '11 at 20:03
feedback

2 Answers

up vote 5 down vote accepted

Is your code running as a javascript library added to a form or is it sat inside a web resource?

If its the latter, you need window.parent if its a HTML web resource. As this gets you access to the Xrm object on the form. In the parent window above it.

If it's a javascript library attached to the form properties then the XRM object is available by default.

The ClientGlobalContext.js.aspx is used when you have a web resource that may not be in the context of a form and still gives you access to the server url and the logged in user for example.

link|improve this answer
Ah, that explains everything then. Yes right now my js library is sitting inside my htm web resource. I didn't want to go through the extra step to connect the library to the event handlers on the form. Thanks! – Steve Dec 9 '11 at 1:32
feedback

The Xrm variable should be available without any includes or setup for normal JS code in CRM 2011.

The basics are covered here

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.