Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/259.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 将页码添加到流程装运网格的底部_C#_Acumatica - Fatal编程技术网

C# 将页码添加到流程装运网格的底部

C# 将页码添加到流程装运网格的底部,c#,acumatica,C#,Acumatica,我想在流程发货页面的网格底部添加页码。Acumatica的Nayan向我们提供了以下定制代码: <ActionBar PagerVisible="Bottom"> <PagerSettings Mode="Numeric" LinksCount="5" /> </ActionBar> Set Grid's Skin ID to 'PrimaryInquire' 将网格的蒙皮ID设置为“PrimaryInquire” 这两个操作都已完成,但不

我想在流程发货页面的网格底部添加页码。Acumatica的Nayan向我们提供了以下定制代码:

 <ActionBar PagerVisible="Bottom">
   <PagerSettings Mode="Numeric" LinksCount="5" />
 </ActionBar>

 Set Grid's Skin ID to 'PrimaryInquire'

将网格的蒙皮ID设置为“PrimaryInquire”

这两个操作都已完成,但不起作用。

页码增加了显著的性能开销;在这种情况下,考虑到生成装运列表的方式,这实际上可能是不可能的。处理装运屏幕上的网格带有AdjustPageSize=“Auto”。设置为“无”并查看。是的,页面编号确实带来了性能开销,因为提到@GabrielPage Number会增加显著的性能开销;在这种情况下,考虑到生成装运列表的方式,这实际上可能是不可能的。处理装运屏幕上的网格带有AdjustPageSize=“Auto”。设置为“无”并查看。是的,页面编号确实带来了性能开销,如@Gabriel所述