View source: R/form-bootstrap.R
form_bootstrap | R Documentation |
Bootstrap form elements
form_bootstrap(action, ..., method = "post", `accept-charset` = "utf-8")
label_bs(name, label)
input_bs(
name,
label = capitalise(name),
type = "text",
help = NULL,
required = FALSE,
...
)
textarea_bs(
name,
label = capitalise(name),
rows = 3,
help = NULL,
required = FALSE,
...
)
radio_bs(name, choices, label = capitalise(name), ...)
checkbox_bs(name, choices, label = capitalise(name), ...)
select_bs(
name,
choices,
label = capitalise(name),
selected = NULL,
multiple = FALSE,
...
)
submit_bs(label = "Submit", class = "btn btn-default", ...)
action |
action link for the form |
... |
passed to the corresponding |
method |
post or get |
accept-charset |
Unicode by default |
name |
name of the element, used to process form data in php |
label |
label of the element, visible on the page; by default, a capitalised version of the name |
type |
of input. Is checked against valid HTML5 input types |
help |
help text, placed under the element |
required |
boolean, wether the input is required or not |
rows |
number of rows shown by default in multiline text areas |
choices |
a vector of possible values; if named, the content is the value tag and the names is displayed |
selected |
element of the select list to be selected in 'select_bs()' |
multiple |
boolean, allow multiple choices in 'select_bs()' |
class |
class of the submit button |
tags
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.