stla
stla
Try that: ```r library(htmltools) library(DT) callback
And this: ```r library(DT) callback
Cool, thanks for posting the solution.
To filter `>2` you could use the **SearchBuilder** extension.
Maybe you can use [that](https://stackoverflow.com/questions/58526047/customizing-how-datatables-displays-missing-values-in-shiny/58526580#58526580) to display some NA and filtering them. I didn't try, I have no idea whether it works.
Hello, That's normal. The way you use to round the numbers is not correct: ```r > x = round(runif(n = 10, min = 0.8, max = 0.85) / 0.01) *...
Strange. I tried other ways but the problem occurs as well: ```r x = round(runif(n = 10, min = 0.8, max = 0.85), 2) print(x, digits = 16) x =...
Hmm that's annoying. Maybe you should use JavaScript then, the option `rowCallback`.
In fact the easiest way is to get the rounded numbers as character strings and then to use the column-wise option `render` to transform them to numbers when you sort...
The problem with `as.character` is that you will not get what is expected when sorting a column. Unless you use the `render` option.