Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下情况:grid1 和 grid2。用户按下按钮后,我在 PXDatabase.Insert 的帮助下为 grid2 生成记录。由于性能原因,我需要 PXDatabase.Insert,所以请不要说我必须使用视图。如何在不刷新整个屏幕的情况下刷新 grid2。例如网格有按钮刷新。如何自动调用它?
RequestRefresh()您可以通过调用绑定到您的 grid2 的视图来强制应用程序刷新网格。例如,在折扣计算引擎中,您会找到以下代码,以强制系统刷新折扣详细信息网格:
RequestRefresh()
discountDetails.View.RequestRefresh();