shiny/shinyjqui orderInput not working

Hi All,

I just updated to R 3.6.3, with all packages updated.

Notice orderInput is not returning _order information.

Any idea?

Thanks in advance!
Lu

what happens ? you get Null ?

library(shiny)
library(shinyjqui)
server <- function(input, output) {
  output$order <- renderPrint({input$foo_order})
}

ui <- fluidPage(
  orderInput(inputId = 'foo', label = 'A simple example', items = c('A', 'B', 'C')),
  verbatimTextOutput('order')
)

shinyApp(ui, server)

Yes, I got NULL.

image

very strange.
Can you run

conflicts()

and

sessionInfo()

and share the info here ?

image

thats seems noral to me, no idea what the problem you have is caused by. Does it persist between you fully restarting R studio ?

Yes, restarted many times.... neither RStudio nor R works.

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.