
How will i edit this info Attention without overiding?

How will i edit this info Attention without overiding?
Best answer by DipakNilkanth
Hi
You can do customization to achieve the same.
Use RowSelected event and make the Attention field enable as below:
protected void Contact_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
var row = (Contact)e.Row;
if (row == null) return;
// Enabling the Attention field
PXUIFieldAttribute.SetEnabled<Contact.attention>(cache, row, true);
}Hope, it helps!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.