如果有多个可用的小部件,我需要使以下代码更健壮:
tbl = this.HTMLWidgets.widgets[0]
第一次尝试:
tbl = this.HTMLWidgets.widgets.filter(function(widget) {
// this should match the table id specified in the shiny app
return widget.name === "hot"
})[0];
但是,它不能产生正确的小部件。我应该如何改进代码,如何列出所有可用的小部件?
更多详细信息:Passing parameter to custom renderer in rhandsontable does not work inside a Shiny App