Skip to main content
Answer

Fieldupdated event not trigger on my custom field

  • September 22, 2023
  • 2 replies
  • 171 views

Forum|alt.badge.img

protected void Vendor_UsrAccountName_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
        {
            var row = e.Row;
            if (row == null) return;
            Base.BAccount.Current.VStatus= "I";
        }

How can I invoke event that field ?

Best answer by Django

Can you confirm that you’ve set CommitChanges = True for that field’s properties in the screen code (aspx)?

2 replies

Forum|alt.badge.img+7
  • Captain II
  • Answer
  • September 22, 2023

Can you confirm that you’ve set CommitChanges = True for that field’s properties in the screen code (aspx)?


Forum|alt.badge.img
  • Author
  • Jr Varsity II
  • September 22, 2023

thank you It solved