appResetButton {periscope2}R Documentation

appResetButton module UI function

Description

Creates a toggle button to reset application session. Upon pressing on the button, its state is flipped to cancel application reload with application and console warning messages indicating that the application will be reloaded.

Usage

appResetButton(id)

Arguments

id

character id for the object

Details

User can either resume reloading application session or cancel reloading process which will also generate application and console messages to indicate reloading status and result.

Value

an html div with prettyToggle button

Button Features

Shiny Usage

Call this function at any place in UI section.

It is paired with a call to appReset(id, ...) in server

See Also

appReset

downloadFile

downloadFile_ValidateTypes

downloadFile_AvailableTypes

downloadablePlot

downloadFileButton

downloadableTable

logViewerOutput

Examples

if (interactive()) {
   library(shiny)
   library(periscope2)
   shinyApp(
     ui = fluidPage(fluidRow(column(12, appResetButton(id = "appResetId")))),
     server = function(input, output) {
       appReset(id = "appResetId", logger = "")
   })
}



[Package periscope2 version 0.2.3 Index]