ajaxLoaderLoading not showing
See original GitHub issueajaxLoaderLoading
is not showing when used in combination with ajaxProgressiveLoad
and ajaxSorting
and ajaxFiltering
when sorting and filtering data.
Tabulator Info 4.2.5
{
ajaxProgressiveLoad: 'scroll',
ajaxSorting: true,
ajaxFiltering: true,
ajaxLoader: true,
ajaxLoaderLoading: 'Loading test'
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Tabulator ajaxLoaderLoading not working as expected
I have the below code, but for some reason the 'Loading data' overlay is not working for me. The Ajax call pulls data...
Read more >ajaxLoaderLoading loader doesn't show up when loading big ...
We found the loader is actually displayed but because the page is stuck in loading data and it is a long page(200 rows)...
Read more >Developers - ajaxLoaderLoading not showing - - Bountysource
ajaxLoaderLoading is not showing when used in combination with ajaxProgressiveLoad and ajaxSorting and ajaxFiltering when sorting and filtering data.
Read more >Setup Options - Tabulator
When loading data, Tabulator can display a loading overlay over the table. This consists of a modal background and a loader element. The...
Read more >how to display a loading indicator while data is fetched from ...
Tabulator has a built in loading overlay when it is loading data via ajax, which can be customised on the ajaxLoaderLoading option
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Found the problem. When using
ajaxProgressiveLoad: 'scroll'
, request for data (https://github.com/olifolkerd/tabulator/blob/master/src/js/modules/page.js#L539) is called withsilent = true
(https://github.com/olifolkerd/tabulator/blob/master/src/js/modules/ajax.js#L249) and loading message is skiped.@olifolkerd I agree, it would be useful to atleast notify the user that the initial page is loading.