0

I have a shiny application where there is a DT table. The app is all fine but most of the time, i see this notification popping up. Not sure what it is. Sometimes, it does not. Can anyone help me?

enter image description here

manu p
  • 952
  • 4
  • 10
  • Hi, it will be easier to help you with a [minimal reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) – bretauv Feb 21 '22 at 10:32
  • Oh. But it is a huge code. Is it not possible based on your experience what might be the issue :) ? – manu p Feb 21 '22 at 10:42
  • The point of making a smaller example is to reduce the number possible causes of the bug. It happens a lot that I find the solution to the problem simply by preparing a very simple example to post on StackOverflow. So you should really do your best to make a small reproducible example. Also, I don't remember having seen this error before so no idea where it might come from – bretauv Feb 21 '22 at 10:46
  • possible duplicate of https://stackoverflow.com/questions/36266729/datatable-warning-table-ajax-error-for-some-people-but-not-all-with-shiny – gdevaux Feb 21 '22 at 13:16
  • Does this answer your question? [DataTable warning table ajax error for some people but not all with shiny](https://stackoverflow.com/questions/36266729/datatable-warning-table-ajax-error-for-some-people-but-not-all-with-shiny) – gdevaux Feb 21 '22 at 13:17

1 Answers1

0

Using client side processing in DT::renderDataTable helped solve this issue for me https://rstudio.github.io/DT/server.html

DT::renderDataTable(iris, server = FALSE)
Ivor
  • 71
  • 1
  • 3