SISBID 2025
https://github.com/dicook/SISBID
Called like a function as rval()
Called like a function as rval()
conditionalPanel(condition, ...)
allows us to encapsulate elements of the UI and only show them when condition
is fulfilledcondition = 'input.submit > 0'
is true when the submit button was pressed at least once.03c_submission.R
04_layout.R
class
parameter
bg-xxx
produces a colored boxborder-xxx
produces a box with a colored outlinecard_header(..., class = "bg-xxx")
produces a box with a colored header?validStatuses
, represented by xxx
above, are primary
, secondary
, success
, info
, warning
, danger
, light
, dark
page_fillable
functionlayout_columns()
functions04_layout2.R
page_fillable
functionlayout_columns()
functions04_layout2.R
page_fillable()
has different behavior from page_fluid()
and page_fixed()
- see this article for more information about fillable containers.page_navbar()
can be used to create tabs across the top (more on this in a minute)
sidebar()
allows for common inputs across all tabslayout_column_wrap()
can accomplish some very neat tricksCode: 05_tabsets.R tab1 tab2
tab3
navset_tab()
navset_pill()
navset_bar()
navset_pill_list()
navset_card_tab()
navset_card_pill()
Modify the code in 05_tabsets.R
to use a page_navbar()
.
sidebar()
function?05:00
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.