闪亮的r selectDate startview =“世纪”?

时间:2017-03-10 12:44:02

标签: r calendar shiny options default-value

我试图想办法让Shiny R selectDate函数在最宽的状态下打开。就目前而言,它有三个选项,用于startview =“____”,即月份或十年。例如:

dateInput("r_num_years", "Date of Birth", format = "mm-dd-yyyy", startview = "decade" )

这给了我以下内容: startview = "decade"

然后点击此弹出窗口的顶部即可获得第二张图片 然后再次单击,即可获得第三张图像

我想在第三张图片中描绘的状态开始

我希望有一个解决方法。我确实浏览了GitHub上的一些源代码,并认为this部分代码看起来很相关。

这似乎应该是标准功能,因为它显然已经具有“状态”或“模式”...

有人有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您可以使用startview = "centuries"startview = 4

Shiny dateInput使用引导程序datepicker,您可以阅读有关其选项的更多信息there

shinyApp(ui=dateInput("r_num_years", "Date of Birth",format = "mm-dd-yyyy", 
                      startview = "centuries" ),
         server=function(input, output){})