more than 5000 records

How can we display more than 5000 records in interface and search by custom picker?

Anyone having Idea? 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    You cannot query all 5000 records at once since it will lead to performance issues and the query will time out. You can try to query the data in batches of 10 or 20. And showing all 5000 records at once will not be looking good as well from UI point of view.

    You can query the data once some value is entered in the custom picker which can be used as a filter.

Reply
  • 0
    Certified Senior Developer

    You cannot query all 5000 records at once since it will lead to performance issues and the query will time out. You can try to query the data in batches of 10 or 20. And showing all 5000 records at once will not be looking good as well from UI point of view.

    You can query the data once some value is entered in the custom picker which can be used as a filter.

Children