Best way to filter an Editable Grid

Hi All, 

What is the recommended way to display A LOT of data in an editable grid? Right now my grid shows over 900 rows of editable data with 6 columns, so it is extremely slow to load and edit. What are my options to make this better? The grid is only for Admins to manage external user data that is called for drop downs in other records. I wanted to avoid totally reworking this into it's own record where each external user in the list is it's own record that you have to click into to edit or create new ones -- this seemed like a more complicated process to me. 

It seems like there is no reasonable way to filter an editable grid like you can with a read-only grid, or even apply paging. Please help! 

Thank you

  Discussion posts and replies are publicly visible

Parents
  • Use paging info on the editable grid. The pagingInfo will display the grid rows in batches.

    /*** Displays 25 records at a time ***
    a!pagingInfo(
    startIndex: 1,
    batchSize: 25
    )

    /*** Displays all records***
    a!pagingInfo(
    startIndex: 1,
    batchSize: -1
    )

    When you perform a query, you should use the pagingInfo also.
Reply
  • Use paging info on the editable grid. The pagingInfo will display the grid rows in batches.

    /*** Displays 25 records at a time ***
    a!pagingInfo(
    startIndex: 1,
    batchSize: 25
    )

    /*** Displays all records***
    a!pagingInfo(
    startIndex: 1,
    batchSize: -1
    )

    When you perform a query, you should use the pagingInfo also.
Children
No Data