Loading ...

Add search bar for Acumatica Grid

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

Currently rated 5.0 by 1 people

  • Currently 5.0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5