throw new PXSetPropertyException(Messages.Test);
I have added the above code in FieldVerifying event of my custom field.
This does raise an error. But the new selected value is assigned to the field.
Can anyone see what wrong I am doing here.
throw new PXSetPropertyException(Messages.Test);
I have added the above code in FieldVerifying event of my custom field.
This does raise an error. But the new selected value is assigned to the field.
Can anyone see what wrong I am doing here.
Best answer by Naveen Boga
I just checked with the code and it is working fine. Please find the code below and hope this helps!!
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
protected void SOLine_OrderQty_FieldVerifying(PXCache cache, PXFieldVerifyingEventArgs e, PXFieldVerifying baseMethod)
{
baseMethod?.Invoke(cache, e);
SOLine row = e.Row as SOLine;
if (row != null)
{
if (row.OrderQty > 10)
{
throw new PXSetPropertyException("Qty should not be greater than 10");
}
}
}
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.