Giter Site home page Giter Site logo

deepanshu88 / shinycopy2clipboard Goto Github PK

View Code? Open in Web Editor NEW
3.0 3.0 2.0 33 KB

Copy Text to Clipboard in Shiny Apps

Home Page: https://www.listendata.com/2021/03/shinycopy2clipboard-copy-to-clipboard.html

R 85.40% JavaScript 14.60%
r rstats shiny

shinycopy2clipboard's People

Contributors

deepanshu88 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

shinycopy2clipboard's Issues

Does this work in an rmarkdown shiny app?

Hello,
I'm developing a shiny app in a single .Rmd document.
This is a minimal example of what I'm trying to achieve. I cannot get copying to clipboard to work :/

---
title: "My App"
output:
  html_document
runtime: shiny
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, comment = NA)

library(data.table)
library(DT)
library(shiny)
library(shinyCopy2clipboard)
use_copy()

dt<-data.table(a=c(1,2,3),b=c("a","b","c"))
```

```{r}
inputPanel(
  checkboxInput("dt_sel", "select/deselect all"),
  CopyButton("copybtn", "COPY", icon = icon("copy"), text = "No Text Found")
)
output$table <- renderDT(datatable(dt), server=TRUE)

dt_proxy <- DT::dataTableProxy("table")
DT::DTOutput('table')

observeEvent(input$dt_sel, {
  if (input$dt_sel) {
    DT::selectRows(dt_proxy, input$table_rows_all)
  } else {
    DT::selectRows(dt_proxy, NULL)
  }
})
renderPrint(print(input$table_rows_selected))
```

```{r, context="server"}
observe({
  req(input$copybtn)
  CopyButtonUpdate(session,
                   id = "copybtn",
                   label = "COPIED!",
                   icon = icon("copy"),
                   text = dt[input$table_rows_selected]
  )
})
```

Any tips? Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.