Dear all;
i want to catch quick form through javascript in mscrm 2011 for example on load if its is a quick form then show me a message
From CRM sdk with a few modifications.
SDK.UISamples.getFormType = function () { var FORM_TYPE_QUICK_CREATE = 5; var formType = Xrm.Page.ui.getFormType(); if (formType == FORM_TYPE_QUICK_CREATE) { alert("Quick Create"); } else { alert("Other"); } };
Hi
thanks for the answer can we somehow catch it from plugin???
You can`t catch the Quick Form Type from a plugin.