I want to make available a custom button field and a custom text field to be only available when a given paymentmethod is selected.
I want the button “Process FEFT” and Text field Mobileno to be available only when TEMP paymentmethod is selected.
protected void ARPayment_RowSelected(PXCache cache, PXRowSelectedEventArgs e)
{
var row = (ARPayment)e.Row;
if (Base.Document.Current.PaymentMethodID=="TEMP")
{
}
}
Thanks