Hello everyone, Can someone show me how to block the Unit price field in Sales Ordes Screen?
Thanks in advance!
Page 1 / 1
Hi
Do you want to make the Unit Price field to Read-Only/Non Editable field?
Hello Naveen,
Yes, I do.
I want to make the Unit Price field to Read-Only/Non Editable field.
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
protected virtual void SOLine_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
InvokeBaseHandler?.Invoke(cache, e);
SOLine row = e.Row as SOLine;
if (row != null)
{
PXUIFieldAttribute.SetEnabled<SOLine.curyUnitPrice>(cache, row, false);
}
}
}
Thank you very much Naveen for your prompt response. I'm going to try and let you know how it looks.
Sure
Thanks Naveen the customization you sent me worked out
public class SOOrderEntryExt : PXGraphExtension<SOOrderEntry>
{
protected virtual void SOLine_RowSelected(PXCache cache, PXRowSelectedEventArgs e, PXRowSelected InvokeBaseHandler)
{
InvokeBaseHandler?.Invoke(cache, e);
SOLine row = e.Row as SOLine;
if (row != null)
{
PXUIFieldAttribute.SetEnabled<SOLine.curyUnitPrice>(cache, row, false);
}
}
}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.