You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
R packages that can be used in Shiny typically provide simple methods of escaping html. For example, in rHandsonTable, kable, rFullCalendar you simply set a escape flag to true or false. Please provide an option to escape html in rPivotTable.
Thank you.
R packages that can be used in Shiny typically provide simple methods of escaping html. For example, in rHandsonTable, kable, rFullCalendar you simply set a escape flag to true or false. Please provide an option to escape html in rPivotTable.
Thank you.
Example:
df <- data.frame(Col1 = c("<b>Cat</b>","Dog","<b>Ferret</b>"), Col2 = c(1,2,3), Col3 = c("a","b","b"))
rpivotTable(df,rows = c("Col2"),cols = c("Col3"),vals = "Col1",aggregatorName = "Last",rendererName = "Table")
The text was updated successfully, but these errors were encountered: