I have a DT table with some normality test results, the idea is that the reader can search for the result he/she is interested in using the keyboard.
The problem is that when typing some words the Xaringan keyboard shortcuts start to interfere with the search which is obviously annoying.
I tried what people answered in this question and it didn't work.
How to stop xaringan's keyboard shortcuts while searching in a DT::datatable()?
library(reticulate)
library(DT)
library(widgetframe)
library(htmlwidgets)
df = py$data
dt <- datatable(df)
frameWidget(dt)
result:
If anyone knows of a way to solve this, I would be very grateful.