Showing posts with label JS(javascript). Show all posts
Showing posts with label JS(javascript). Show all posts

Tuesday, April 19, 2011

Calling external JS files from MS CRM 4.0 form

function LoadFunction() { }
//create a Script loader object + function to be called when the script has
//finished loading
window.ScriptLibrary = new ScriptLoader(LoadFunction);
//url , false - cache, true - no cache
ScriptLibrary.Load('//FileName.js', true);