Hi All,
Need to how to edit grid column value based on another column value and update the cache and enable the save button.
Thanks
Hi All,
Need to how to edit grid column value based on another column value and update the cache and enable the save button.
Thanks
Best answer by palbores
protected virtual void _(Events.FieldUpdated<DACName, DACName.verificationMethod> e)
{
var row = e.Row;
if (row == null) return;
if (e.OldValue != e.NewValue)
{
//Code for Update the Verification Note
row.VerificationNote = "";
View.Cache.Update(row);
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.