The slider in the draggable panel does not work brilliant 0.11

After upgrading to brilliant 0.11, I am having problems with sliders inside draggable panels. This is a simple ui.R that replicates the problem:

shinyUI(
  basicPage(
    absolutePanel(
    draggable = TRUE,
    wellPanel(  
      sliderInput("tst", h1("Testing slider"), 
                  min = 0, max = 100, value = 50, step = 1)
      )
    )
  )
)

The problem is that both the slider and the panel move when dragging the sliders. The slider essentially moves relative to the moving panel — the movement thus “doubles” on the slider. I also can not release the slider by releasing the mouse button, just release the drag and drop panel.

The above code worked perfectly in the previous brilliant version. I know that the slider was changed to 0.11, this seems to be a product of this.

Any thoughts on this? Thank!

+4
source share

All Articles