Can anyone confirm whether the OnSave event on the bulk edit form actualy works? Having attached this simple peice of code to the OnSave and OnLoad events of the Contact form in CRM, the code works for OnLoad on both Create and Bulk Edit and OnSave for the Create, but not for on OnSave on the BulkEdit:
var CRM_FORM_TYPE_CREATE= 1;
var CRM_FORM_TYPE_BULK= 6;
switch (crmForm.FormType)
{
case CRM_FORM_TYPE_CREATE:
alert("This is a New form on the Save event.");
break;
case CRM_FORM_TYPE_BULK:
alert("This is a Bulk Edit form on the Save event.");
break;
}
Any ideas?
var CRM_FORM_TYPE_CREATE= 1;
var CRM_FORM_TYPE_BULK= 6;
switch (crmForm.FormType)
{
case CRM_FORM_TYPE_CREATE:
alert("This is a New form on the Save event.");
break;
case CRM_FORM_TYPE_BULK:
alert("This is a Bulk Edit form on the Save event.");
break;
}
Any ideas?