Skip to main content

Hello,


it is possible to add an information in the footer of the screen PO505000
For example a total of the field Amount.

 

Thanks.

You can use the grid control StatusField property to display text in this area:
<px:PXGrid ID="grid" runat="server" DataSourceID="ds" StatusField="Availability">

public virtual void POLine_Availability_FieldSelecting(PXCache sender, PXFieldSelectingEventArgs e)
{
   // Set text that appear in footer
   e.ReturnValue = "Text to be displayed in grid footer.";
}

I have a more detailed answer about this on stack overflow:

https://stackoverflow.com/a/56067383/7376238


Reply