Источник:
http://mscrmblog.net/2013/10/17/crm2...f-before-load/
==============
So we needed to set an IFRAME loading screen before loading our custom webpage from Sharepoint instead of the blank white page while the sharepoint app pool is starting up.
These are the javascript functions I used:
function SetIFrameLoading(IFrame) { var frame = Xrm.Page.ui.controls.get(IFrame); frame.setSrc("/_static/loading.htm");}function SetIFrameUrl(IFrame, Url) { var frame = Xrm.Page.ui.controls.get(IFrame); frame.setSrc(Url);}function InitialiseDocumentsIFrame(url) { SetIFrameLoading("IFRAME_CustomIFRAME"); SetIFrameUrl("IFRAME_CustomIFRAME", url);}
Источник:
http://mscrmblog.net/2013/10/17/crm2...f-before-load/