Add search bar for Acumatica Grid
05 September 2025
Hello. Today I will show you how to add a search bar for the grid in Acumatica
To do this you need to open ASPX of page with grid where you want to add a search bar
And to a grid tag you need to add next properties
AllowSearch="True"
FastFilterFields="Fields that you want"
Example
<px:PXGrid ID="gridCloud" runat="server" DataSourceID="ds"
Width="100%" Height="300px" SkinID="DetailsInTab"
AllowSearch="True"
FastFilterFields="StorageProvider,ClientId,ClientSecret">
<Levels>
So now when you will be entering data to search bar it’s gonna search for that value by fields that you have added to FastFilterFields