Guest User

Untitled

a guest
Feb 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # UI ==========================================================================
  2.  
  3. textModalInput = function(id) {
  4. ns <- NS(id)
  5.  
  6. tagList(
  7. textInput(ns("txt"), "Write something")
  8. )
  9. }
  10.  
  11. # Server ======================================================================
  12.  
  13. textModalServer = function(input, output, session) {
  14. mytext <- reactive({
  15. input$txt
  16. })
  17. return(mytext)
  18. }
Add Comment
Please, Sign In to add comment