我有一个闪亮的ui.R试图做以下事情。条件面板应接收来自checkboxGroupInput
的输入。
如果来自checkboxGroupInput
的单个输入,则很容易调用条件说" input.sectors =' MFI'"。下面给出一个例子:
conditionalPanel(
condition ="input.sectors == 'BC'",
checkboxGroupInput("BCEntity","Select Entity",choices = c("Taraashna"))
),
但是,如果在checkboxGroupInput
中选择了两个或更多选项,则条件input.sectors=='BC','MFI'
似乎无法正常运行。逻辑符号也没有正常工作。列表选项为c(' BC',' MFI')也存在问题。是否有一个简单的解决方案。我尝试的方式如下所示:
conditionalPanel(
condition ="input.sectors == 'BC','MFI'",
checkboxGroupInput("BCEntity","Select Entity",choices = c("Taraashna")),
checkboxGroupInput("AGRIEntity","Select Entity",choices = c("Kisan Dhan", "Origo"))
),