I have a question on whether on the Sales Order Form, if there is a possibility when entering a value in a custom field in the summary area, when we enter a value to that, it triggers appearance of some selected columns in the table (line level).
Page 1 / 1
Hi
Yes, If value is present in the Summary area field, then we can able to display the Line level fields.
Please let me know if code sample to shared here.
Hi,
Hi
protected virtual void SOOrder_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
InvokeBaseHandler?.Invoke(cache, e);
SOOrder row = e.Row as SOOrder;
if (row == null) return;
PXUIFieldAttribute.SetVisible<SOLine.shipDate>(Base.Transactions.Cache, null, !string.IsNullOrWhiteSpace(row.OrderDesc));
}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.