mod_cssproperty_pageInput: mod_cssproperty_pageInput and mod_cssproperty_page

Description Usage Arguments Examples

View source: R/mod_cssproperty_pageInput.R

Description

A shiny module that allows to give css property for @Page rule in CSS for pages media

Usage

1
2
3
mod_cssproperty_pageInput(id, title, col = "black")

mod_cssproperty_page(input, output, session)

Arguments

id

shiny id

title

title of the gradientBox

col

background color of the gradientBox

input

internal

output

internal

session

internal

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Not run: 
library(shiny)
library(shinydashboardPlus)
if (interactive()) {
ui <- fluidPage(
mod_cssproperty_pageInput("page", title = "page")
)

server <- function(input, output, session) {
callModule(mod_cssproperty_page, "page")
}

shinyApp(ui, server)
}

## End(Not run)

BenjaminLouis/wimpress documentation built on July 12, 2019, 8:07 a.m.