Contents tagged with Custom Inquiry
-
Pagination in custom inquiry
Hello everybody,
today I want to share with everybody, and with myself code fragment, that allows to achieve pagination in custom inquiry pages.
Take a look on the code below:
public class YourGraphInquiry : PXGraph<YourGraphInquiry>
{
public PXCancel<YourDACFilter> Cancel;
public PXFilter<YourDACFilter> Filter;
[PXFilterable]
public PXSelect<YourDACDetails,
Where2<
Where<YourDACDetails.Someid, Equal<Current<YourDACFilter.SomeID>>,
Or<Current<YourDACFilter.SomeID>, IsNull>>,
And<
Where<YourDACDetails.Somepartid, Equal<Current<YourDACFilter.SomePartId>>,
… more