【发布时间】:2016-11-27 10:06:35
【问题描述】:
我在这里遵循示例 2.5:https://rstudio.github.io/DT/ 在闪亮中创建自定义数据表容器。该示例本身似乎可以正常工作。但是当我尝试在闪亮的应用程序中运行它时,Sepal 和 Petal 标题没有居中。请帮忙。谢谢。
library(shiny)
runApp(list(
ui = basicPage(
h2('Iris Table'),
DT::dataTableOutput('mytable')
),
server = function(input, output) {
output$mytable = DT::renderDataTable({
# a custom table container
sketch = htmltools::withTags(table(
class = 'display',
thead(
tr(
th(rowspan = 2, 'Species'),
th(colspan = 2, 'Sepal'),
th(colspan = 2, 'Petal')
),
tr(
lapply(rep(c('Length', 'Width'), 2), th)
)
)
))
DT::datatable(iris[1:20, c(5, 1:4)], container = sketch, rownames = FALSE)
})
}
))
【问题讨论】: