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).
Solved
Possibility to create fields in summary area of Sales Order Form that determine how fields appear in line level
Best answer by Naveen Boga
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.