I wish to create an interactive html page with data I manipulate in R. So far, I've created a NVD3 chart with the rChart package and output in in html via knitr package without any issue.
Now, I want to create a table with dynamic content in this page. I've been looking at options to integrate it, such as the table template of rCharts, the package DT, but none of these options seems to provide the flexibility I am looking for.
I found exactly the template I am looking for on this page, as it has a native modal display I did not found anywhere else. https://datatables.net/extensions/responsive/examples/display-types/jqueryui-modal.html. This provides Javascript and HTML to use to initialise the table but I have no clue how to use it with my R data.
I there a way to integrate this table via R package + knitr ? Can the shiny suite help me here ?
Thanks for your help.