Questions tagged [shinyjqui]

10 questions
4
votes
1 answer

Drop-on functionality in table in Shiny

I am searching for a method (package) that enables me to 'drop' a row from one table on a row in another table. The server-side functionality that I am envisioning with it is that I can create some logic that will update the destination table.…
Jochem
  • 3,295
  • 4
  • 30
  • 55
2
votes
1 answer

Drag and drop with shinyjqui to a grid-table

I'm experimenting with the shinyjqui package: One particularly interesting function is orderInput(). With the connect argument, we can drag and drop items, as demonstrated here:…
TarJae
  • 72,363
  • 6
  • 19
  • 66
2
votes
1 answer

Using shinyjqui::sortableTableOutput with a reactive dataframe

If you run the app below, it works fine at the beginning: you can reorder the rows of mtcars and the order appears in the verbatimTextOutput. But once you change the data to iris with the radio button, that does not work…
Stéphane Laurent
  • 75,186
  • 15
  • 119
  • 225
1
vote
1 answer

Implement drag-and-drop functionality using an observeEvent triggered by an actionButton in shinyjqui

This is a follow-up question to this Drag and drop with shinyjqui to a grid-table This is the code: library(shiny) library(shinyjqui) connections <- paste0("droppable_cell_", 1:7) # id of the grid cells ui <- fluidPage( tags$head(tags$script( …
TarJae
  • 72,363
  • 6
  • 19
  • 66
1
vote
2 answers

jquery sortable scroll at edge inside shinydashboard

I'm using {shinyjqui} R package to create jQuery sortable elements inside {shinydashboard}. When dragging an item to the top or bottom of the window, I want the window to automatically scroll. This is the default jQuery behavior. I think I need to…
Giovanni Colitti
  • 1,982
  • 11
  • 24
0
votes
0 answers

How to make an orderInput item resizeable with jqui_resizable

This is a follow-up question to this Drag and drop with shinyjqui to a grid-table. I am trying to make the item or button with the label A resizeable like explained here https://yang-tang.github.io/shinyjqui/: 'Resizable: Change the size of an…
TarJae
  • 72,363
  • 6
  • 19
  • 66
0
votes
0 answers

R Shiny, shinjqui get orderInput after modification

I have an orderInput from the shinyjqui library and I would like the server to set which items are in the orderInput. Afterwards I would like the user to modify this orderInput and I would like to observe this modification on the server side. The…
L. t.
  • 107
  • 3
0
votes
1 answer

order for jqui_sortable not returned when using insertUI in shiny

I found this related question: dragUI not draggable when created with insertUI shiny I want to insert an arbitrary number of ui elements inside a jqui_sortable(), and have the order of the elements available inside the server function. If I know…
Giovanni Colitti
  • 1,982
  • 11
  • 24
0
votes
1 answer

Plot Aspect Ratio of imageOutput() go wrong using shinyjqui

I tried to output a higher quality image by resizing the imageOutput in shiny. It's true that when I try to use shinyjqui, I can resize it interactively, but it doesn't change the aspect ratio of the plot, so it doesn't make sense. Perhaps this is…
Shu
  • 1
0
votes
1 answer

Temporary memory error in Shiny with pdf viewer (UiOutput) and selectableTableOutput (shinyjqui package)

I have a super strange problem that I can't seem to figure out - I suspect it has something to do with writing/reading from temp directory. So what I'm trying to do is a long story, but i've reduced the problem down to two simple tasks. View an…