2015年2月12日 星期四

CRM 2011 Close the form in JavaScript

CRM 2011 Close the form in JavaScript

JavaScript:
function OnSave()
{
   Xrm.Page.ui.close();
}


/*** Other Sample ***/

function SaveAndClose()
{
    Xrm.Page.data.entity.save();
    if (parent.opener != undefined)
    {
        window.parent.close();
    }
    else
        Xrm.Page.ui.close();

}

沒有留言:

張貼留言