Filter the grid rows

QuestionsFilter the grid rows
RG asked 10 years ago

The mysql database table which I would like to load into the grid contains around 2 million records. The grid does not load at all.
It shows the total record count at the bottom grid and the loading text appears on the grid.

what needs to be done to load the grid with huge volume of data?
Is there a better approach to load the tables with volume?

1 Answers
Abu Ghufran answered 10 years ago

Hello,

You need to implement paging in grid to limit the records.
e.g.
$opt["rowNum"] = 100;

$g->set_options($opt);

This will fetch 100 rows from database at a time.

Option 2 is to make virtual scrolling, that will load data once you scroll down in grid.
e.g.
$opt["srcoll"] = true;

$g->set_options($opt);

This will remove the pagination.

The limitation is due to the browser memory capacity as the javascript can consume available memory to show data. If the data is very large, the browser may get stuck.

If you are facing high loading time in search and sort operations, your database may need some optimization (field indexing etc).

Your Answer

11 + 12 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?