About 1 in 5 times when I click on a column header to sort, the sort doesn't actually happen and the "processing" indicator text doesn't go away.
I have to sort again to make the message disappear.
Please advise me toward a solution.
About 1 in 5 times when I click on a column header to sort, the sort doesn't actually happen and the "processing" indicator text doesn't go away.
I have to sort again to make the message disappear.
Please advise me toward a solution.
I already fix this, there should be some issue related to this in meteor-admin
package. It's just a visual problem, you can solve this simply not displaying the indicator.
I have this rule in my css and it should work (now I can't test, if this is the exact rule, sorry):
div.dataTables_wrapper div.dataTables_processing {
visibility: hidden;
}
As followed up on the GitHub repo issue #321, it seems this bug can be corrected by PR #318.
Unfortunately, it looks like the repo maintainers are not very active on it (surely working hard to pay their bills :-) ), so for the meantime you could simply use gaiazov's fork (from which PR #318 originates) to have a working version of the package.
In order to do that:
packages
at the root of your Meteor project, if it does not already exist.packages
folder.aldeed:tabular
package. When re-added, Meteor will first look into your local packages in the packages
folder.There is also another way using a global packages folder, but you would need to manage code versioning (git…) separately. The description for this method can be easily found on the Internet.
See also the reference page: Meteor Guide > Build > Writing Atmosphere Packages > Overriding packages with a local version