I am trying to unrequire a field on the Mobile form.
I'm starting simple by doing this on my onload form:
MobileCRM.UI.EntityForm.requestObject(
function (entityForm) {
var detailView = entityForm.getDetailView("Summary");
var item = detailView.getItemByName("parentcontactid");
item.validate = false;
},
MobileCRM.bridge.alert,
null
);
I am on the Opportunity form and I am trying to unrequire the Contact field. It doesn't seem to be taking effect. I am missing anything here?






