Hi. Can someone tell me the steps to apply validation message to the save button? I want provide a validation message when user click on save. It’s bit urgent. Thanks in advance.
Answer
Validation before save
Best answer by Giri K
Try this
public void ARInvoice_RowPersisting(PXCache cache, PXRowPersistingEventArgs e, PXRowPersisting baseHandler)
{
if (baseHandler!= null)
baseHandler(cache, e);
//your validation
throw new PXException("my validation");
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
