Modify Grid footer information (“On Hand X, Available Y, …”)

元气小坏坏 提交于 2019-12-13 10:22:18

问题


Is there any way with a customization to modify the information area at the footer of a grid particularly the Sales Order Entry > Document Details grid that displays On Hand & Availability information for the Current SOLine?


回答1:


    public virtual void SOLine_Availability_FieldSelecting(PXCache sender, PXFieldSelectingEventArgs e, PXFieldSelecting invokeBaseHandler)
    {
        invokeBaseHandler(sender, e);
        e.ReturnValue = "Hey There!";

    }

Availability seems to be a common descriptor/field for several line level DACs



来源:https://stackoverflow.com/questions/41514275/modify-grid-footer-information-on-hand-x-available-y

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!