Alejandro Alvarado
Alejandro Alvarado

Reputation: 73

How can I add a search field on my processing page?

I have created a custom processing page called "Kardex Process", by default it doesn't add a search field, and I want to include it.

See the screenshot below:

enter image description here

I want to include it as well as on the Release AP Documents screen, see the screen below:

enter image description here

Can you help me with this?

Upvotes: 1

Views: 114

Answers (1)

Dmitrii Naumov
Dmitrii Naumov

Reputation: 1712

You need to define FastFilterFields property in the grid control and list fields that you want to be included in the search.

<px:PXGrid ID="grid" runat="server" DataSourceID="ds" ... SkinID="PrimaryInquire"       FastFilterFields="RefNbr,VendorID,VendorID_Vendor_acctName">

Upvotes: 2

Related Questions