Quantcast
Viewing all articles
Browse latest Browse all 2504

unable to get updated value in the contact workspace through add-in (3 Comments)

Topic by chidambaram CT

In contact workspace, I have field bank_validation Yes/No custom field. Based on condition, I change value of field through workspace add-in. 
On save of another add-in, I try to retrieve custom field. But I am not getting the updated value. I have tried RefreshWorkspace() method also,still getting old value not the updated value.

 

 

// _recordContext.RefreshWorkspace();
ICfVal icfValBankValidation = ((IEnumerable<ICfVal>)this._contact.CustomField).FirstOrDefault<ICfVal>((Func<ICfVal, bool>)(cf => cf.CfId == 415));
bankvalidation = icfValBankValidation.ValInt;


Viewing all articles
Browse latest Browse all 2504

Trending Articles