Skip to contents

A grid that holds draggable items

Usage

moveable(...)

Arguments

...

The elements to include within the body of the moveable grid

Value

HTML code of a container that allows items within it to be draggable

Note

For more information on the features of a sortable grid, visit the examples section of the help documentation

Examples

moveable(
  htmltools::tags$div("A"),
  htmltools::tags$div("B")
)
#> <section id="cardpro-widget-grid">
#>   <div class="row">
#>     <div>A</div>
#>     <div>B</div>
#>   </div>
#> </section>