Liking cljdoc? Tell your friends :D

reacl-c-basics.forms.bootstrap

Functions and items to utilize Bootstrap 5 forms and input styles and utilities.

Functions and items to utilize Bootstrap 5 forms and input styles and utilities.
raw docstring

checkcljs

(check & children)
(check attrs & children)
source

check-inputcljs

(check-input & children)
(check-input attrs & children)
source

check-labelcljs

(check-label & children)
(check-label attrs & children)
source

col-labelcljs

(col-label & children)
(col-label attrs & children)

A form label that is also a column, to be used to make 'horizontal forms'. Also add a column class like 'col-2' to this item.

A form label that is also a column, to be used to make 'horizontal forms'. Also add a column class like 'col-2' to this item.
sourceraw docstring

floatingcljs

(floating & children)
(floating attrs & children)
source

groupcljs

(group & children)
(group attrs & children)
source

group-textcljs

(group-text & children)
(group-text attrs & children)
source

inputcljs

(input & children)
(input attrs & children)
source

invalid-feedbackcljs

(invalid-feedback & children)
(invalid-feedback attrs & children)
source

invalid-tooltipcljs

(invalid-tooltip & children)
(invalid-tooltip attrs & children)
source

labelcljs

(label & children)
(label attrs & children)
source

rangecljs

(range & children)
(range attrs & children)
source

selectcljs

(select & children)
(select attrs & children)
source

switchcljs

(switch & children)
(switch attrs & children)
source

textcljs

(text & children)
(text attrs & children)
source

textareacljs

(textarea & children)
(textarea attrs & children)
source

toggle-buttoncljs

(toggle-button & contents)
(toggle-button attrs & contents)

A button that act like a checkbox form input, toggling its boolean state.

A button that act like a checkbox form input, toggling its boolean state.
sourceraw docstring

valid-feedbackcljs

(valid-feedback & children)
(valid-feedback attrs & children)
source

valid-tooltipcljs

(valid-tooltip & children)
(valid-tooltip attrs & children)
source

validated-formcljs

(validated-form & content)
(validated-form attrs & content)

A form, that disables the default html5 form validation, and adds the 'was-validated' class to the form in case the submit of an invalid form is attempted. Removes that class when a valid form is submitted.

To declare the validity of form inputs, use :required, :pattern, :invalid, :validate etc. attributes on the input items. To show a more detailed error message to the user, add invalid-feedback or invalid-tooltip next to the input elements.

A form, that disables the default html5 form validation, and adds
the 'was-validated' class to the form in case the submit of an invalid
form is attempted. Removes that class when a valid form is submitted.

To declare the validity of form inputs, use `:required`,
`:pattern`, `:invalid`, `:validate` etc. attributes on the input
items. To show a more detailed error message to the user,
add [[invalid-feedback]] or [[invalid-tooltip]] next to the input
elements.
sourceraw docstring

validated-form*cljs

(validated-form* & content)
(validated-form* attrs & content)

Like validated-form, but with a public 'was validated' state, which is set when an invalid form is attempted to be submitted. Unlike validated-form that state is not reset automatically.

Like [[validated-form]], but with a public 'was validated' state,
which is set when an invalid form is attempted to be
submitted. Unlike [[validated-form]] that state is not reset
automatically.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close