R-Shiny Modal Form
up vote
0
down vote
favorite
Good day developers. I am having a bit of an issue dealing with R Shiny here. I have a webpage where I can click on a button and open a modal. The modal is a form that takes inputs. I want to use these modal inputs in a string and print that variable. I always get the following errors:
Operation not allowed without an active reactive context. (You tried
to do something that can only be done from inside a reactive
expression or observer.)
and sometimes this when I remove reactivity:
Warning: Error in as.vector: cannot coerce type 'closure' to vector of
type 'character'
# Shiny App: Server
tab_tab1_server <- function(input, output, session) {
# Defining a modal containing input boxes
tab1_modal <- function(failed = FALSE) {
modalDialog(
title = "Tab 1", size = "l",
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Group ID", value = "1337"),
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Object ID", value = "1337")
,textInput(inputId = "GRP_DESC",label = "Object Description", value = "Ahmads Test Entry"))
))
)}
}
# button to show modal
observeEvent(input$add_btn, {
showModal(tab1_modal())})
# Variable to contain entire script including text from input variables
result<-sprintf("This is your input", GRP_ID,GRP_DESC)
# Button to print variable in console
observeEvent(input$result_btn, {
print(paste0("Showing result:",result ))
})
Please tell me how to use the inputs in the modal for another action.
r shiny
add a comment |
up vote
0
down vote
favorite
Good day developers. I am having a bit of an issue dealing with R Shiny here. I have a webpage where I can click on a button and open a modal. The modal is a form that takes inputs. I want to use these modal inputs in a string and print that variable. I always get the following errors:
Operation not allowed without an active reactive context. (You tried
to do something that can only be done from inside a reactive
expression or observer.)
and sometimes this when I remove reactivity:
Warning: Error in as.vector: cannot coerce type 'closure' to vector of
type 'character'
# Shiny App: Server
tab_tab1_server <- function(input, output, session) {
# Defining a modal containing input boxes
tab1_modal <- function(failed = FALSE) {
modalDialog(
title = "Tab 1", size = "l",
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Group ID", value = "1337"),
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Object ID", value = "1337")
,textInput(inputId = "GRP_DESC",label = "Object Description", value = "Ahmads Test Entry"))
))
)}
}
# button to show modal
observeEvent(input$add_btn, {
showModal(tab1_modal())})
# Variable to contain entire script including text from input variables
result<-sprintf("This is your input", GRP_ID,GRP_DESC)
# Button to print variable in console
observeEvent(input$result_btn, {
print(paste0("Showing result:",result ))
})
Please tell me how to use the inputs in the modal for another action.
r shiny
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Good day developers. I am having a bit of an issue dealing with R Shiny here. I have a webpage where I can click on a button and open a modal. The modal is a form that takes inputs. I want to use these modal inputs in a string and print that variable. I always get the following errors:
Operation not allowed without an active reactive context. (You tried
to do something that can only be done from inside a reactive
expression or observer.)
and sometimes this when I remove reactivity:
Warning: Error in as.vector: cannot coerce type 'closure' to vector of
type 'character'
# Shiny App: Server
tab_tab1_server <- function(input, output, session) {
# Defining a modal containing input boxes
tab1_modal <- function(failed = FALSE) {
modalDialog(
title = "Tab 1", size = "l",
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Group ID", value = "1337"),
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Object ID", value = "1337")
,textInput(inputId = "GRP_DESC",label = "Object Description", value = "Ahmads Test Entry"))
))
)}
}
# button to show modal
observeEvent(input$add_btn, {
showModal(tab1_modal())})
# Variable to contain entire script including text from input variables
result<-sprintf("This is your input", GRP_ID,GRP_DESC)
# Button to print variable in console
observeEvent(input$result_btn, {
print(paste0("Showing result:",result ))
})
Please tell me how to use the inputs in the modal for another action.
r shiny
Good day developers. I am having a bit of an issue dealing with R Shiny here. I have a webpage where I can click on a button and open a modal. The modal is a form that takes inputs. I want to use these modal inputs in a string and print that variable. I always get the following errors:
Operation not allowed without an active reactive context. (You tried
to do something that can only be done from inside a reactive
expression or observer.)
and sometimes this when I remove reactivity:
Warning: Error in as.vector: cannot coerce type 'closure' to vector of
type 'character'
# Shiny App: Server
tab_tab1_server <- function(input, output, session) {
# Defining a modal containing input boxes
tab1_modal <- function(failed = FALSE) {
modalDialog(
title = "Tab 1", size = "l",
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Group ID", value = "1337"),
fluidRow(
box(title = "Names", background = "green", collapsible = TRUE, width = 12, collapsed = TRUE,
splitLayout(
textInput(inputId = "GRP_ID",label = "Object ID", value = "1337")
,textInput(inputId = "GRP_DESC",label = "Object Description", value = "Ahmads Test Entry"))
))
)}
}
# button to show modal
observeEvent(input$add_btn, {
showModal(tab1_modal())})
# Variable to contain entire script including text from input variables
result<-sprintf("This is your input", GRP_ID,GRP_DESC)
# Button to print variable in console
observeEvent(input$result_btn, {
print(paste0("Showing result:",result ))
})
Please tell me how to use the inputs in the modal for another action.
r shiny
r shiny
asked Nov 13 at 5:17
Ahmad M.
4910
4910
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274268%2fr-shiny-modal-form%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown