FM_add_ui_tooltip {formods} | R Documentation |
Add Tooltip to UI Element
Description
Adds a tool tip to a user element.
Usage
FM_add_ui_tooltip(
state,
uiele,
tooltip = "mytooltip",
position = "right",
size = "medium"
)
Arguments
state |
Current module state after yaml file has been read. |
uiele |
UI element to add the toooltip to. |
tooltip |
Text containing the tool tip. |
position |
Position of the tooltip. |
size |
size of the tooltip |
Value
If tooltips are enabled and the suggested packages are installed then a uiele with the tooltip added will be returned. Otherwise it will just return the original uiele unchanged.
Examples
if(interactive()){
# We need a module state object to use this function:
id="UD"
sess_res = UD_test_mksession(session=list(), id=id)
state = sess_res$state
uiele = shiny::textInput(inputId = "my input", label="example input")
uiele = FM_add_ui_tooltip(state, uiele)
}
[Package formods version 0.1.6 Index]