问题标签 [shinywidgets]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
r - 限制来自shinyWidgets 包的multiInput() 中选定项目的数量
假设我有以下 Shiny 应用程序-
现在我想对用户可以选择的项目数量设置一个上限3。有什么办法可以做到这一点multiInput()
吗?
r - 如何避免使用 shinyWidgets 下拉列表和数据表折叠
我想在shinyWidgets
下拉列表中显示包含一些信息的电子表格,有时跨越多个页面。
如果单击下一页,下拉菜单将再次关闭。
我怎样才能避免这种情况?
r - 如何在闪亮的应用程序中禁用 checkboxGroupInput 中的多项选择
我的闪亮应用中有一个checkboxGroupInput
。似乎始终启用多项选择。我需要的是禁用多项选择,一次只允许一个选择。
有谁知道这是怎么做到的吗?下面闪亮的应用程序示例:
这是checkboxGroupInput
功能。我很惊讶没有像multiple
. 我应该使用其他小部件来达到这个目的吗?我应该使用什么?
shiny - 使用 `pickerInput` 大小选项提高应用程序速度
我正在开发一个闪亮的应用程序shinyWidgets
包来做我的selectInput
. 对于导致一些错误的输入变量,我有许多模式。我减小了picker
(size 参数)的大小,如果可能的话,只显示 10 个变量的第一个选项并激活 liveSearch 选项。但似乎不起作用...
在此示例中,我只想显示前 10 个值(但如果我搜索它们可以找到其他值)。我想去掉滚动条,可以吗?
r - 在 sweetalert 按钮中使用 HTML
是否有机会不仅在文本中使用 html,而且在按钮sendweetalert
或包confirmsweetalert
中使用 html shinyWidgets
?
javascript - 如何在 Shiny 中更改输入后保留滚动位置
在 Shiny 中,我使用带有大量项目的水平 radioGroupButtons 输入。如果单击其中一项,按钮标签的颜色会发生变化。这实际上很好。
但是,如果我单击最后一项以使我向右滚动很远,则滚动位置将重置。
所以每次点击后,如果我想继续下一个项目,我必须再次向右移动。
是否有解决方案可以在每次单击后保留滚动位置?
这是代码:
css - PicketInput 更改占位符 R Shiny Widgets
pickerInput
from shinyWidgets
package 有一个占位符 title Nothing selected
。
怎么可能用Pick a choice
例如替换它?pickerInput
如果可能的话,我更喜欢使用 css 或选项的解决方案shinyjs
。
任何帮助将不胜感激。
r - Trigger observeEvent in Shiny even when condition hasn't changed
I am having some trouble getting the functionality in my app that I'm looking for because of the way observeEvent
works (which is normally very intuitive).
The basic functionality I'm looking for is that a user can input a couple numbers, click "submit", and then a modal pops up to take the user's name. After that, the app records the name and sums the numbers, and then clears the inputs. Then I'd like the user to be able repeat the process using the same name - but the app currently is structured so that the sums use an observeEvent
that responds only when the name is different (i.e., using the same name twice in a row doesn't work, though I'd like it to). You can see in the app that my attempt at a solution is to reset the input for the inputSweetAlert
(using shinyjs
), but it can't access it, I assume because it's not actually on the UI side. I am using shinyWidgets sweetAlerts, which I'd like to continue doing.
Here's an example app:
Thanks for any help you can provide!
shiny - 将shinyWidgets添加到R中的数据表中
我目前正在尝试将来自 shinyWidgets 的漂亮用户输入添加到 DT 数据表中。
我试图按照 DT github 中的示例使用 radioButtons,它工作正常:
我现在想有一个李克特量表的第六列,就像这里介绍的那样:http: //shinyapps.dreamrs.fr/shinyWidgets/
在 R 控制台中执行命令时会给出 div 信息。所以我尝试像 radioButtons 一样添加它:
不幸的是,这显然没有提供来自 shinyWidgets 的输入。
任何想法 ?
r - 如何使用 pickerInput 进行 SHIFT 选择
我想知道是否可以使用 from 来“伪造”SHIFT 选择或拖动pickerInput
选择shinyWidgets
?
基本上在下面的示例中,我想选择从 A 到 G 的所有字母,单击 2 次鼠标,单击 A,然后使用 SHIFT 并单击 G,之间的所有元素都被选中。