diff --git a/man/set_column_editor_input.Rd b/man/set_column_editor_input.Rd index a17bd0c..274791d 100644 --- a/man/set_column_editor_input.Rd +++ b/man/set_column_editor_input.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/editors.R \name{set_column_editor_input} \alias{set_column_editor_input} -\title{Title} +\title{The \strong{input} editor allows entering of a single line of plain text} \usage{ set_column_editor_input( widget, @@ -30,7 +30,7 @@ set_column_editor_input( The updated \code{\link[=tabulator]{tabulator()}} HTML widget } \description{ -Title +The \strong{input} editor allows entering of a single line of plain text } \examples{ examples/editors/editor_input diff --git a/man/set_column_editor_numeric.Rd b/man/set_column_editor_numeric.Rd new file mode 100644 index 0000000..aec73f9 --- /dev/null +++ b/man/set_column_editor_numeric.Rd @@ -0,0 +1,42 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/editors.R +\name{set_column_editor_numeric} +\alias{set_column_editor_numeric} +\title{The \strong{numeric} editor allows for numeric entry with a number type input element with increment and decrement buttons.} +\usage{ +set_column_editor_numeric( + widget, + columns, + min = 0, + max = 100, + step = 1, + elementAttributes = list(maxlength = 10), + mask = "", + select_contents = TRUE, + vertical_navigation = "table" +) +} +\arguments{ +\item{widget}{A \code{\link[=tabulator]{tabulator()}} HTML widget.} + +\item{min}{the maximum allowed value} + +\item{max}{the minimum allowed value} + +\item{step}{the step size when incrementing/decrementing the value (default 1)} + +\item{elementAttributes}{Set attributes directly on the element} + +\item{mask}{Apply a mask to the input to allow characters to be entered only in a certain order} + +\item{select_contents}{When the editor is loaded select its text content} + +\item{vertical_navigation}{determine how use of the up/down arrow keys will affect the editor, +this can take two different types of value: : \emph{editor} and \emph{table}} +} +\value{ +The updated \code{\link[=tabulator]{tabulator()}} HTML widget +} +\description{ +The \strong{numeric} editor allows for numeric entry with a number type input element with increment and decrement buttons. +} diff --git a/man/set_column_editor_text_area.Rd b/man/set_column_editor_text_area.Rd new file mode 100644 index 0000000..6ad9617 --- /dev/null +++ b/man/set_column_editor_text_area.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/editors.R +\name{set_column_editor_text_area} +\alias{set_column_editor_text_area} +\title{The \strong{textarea} editor allows entering of multiple lines of plain text} +\usage{ +set_column_editor_text_area( + widget, + columns, + elementAttributes = list(maxlength = 10), + mask = "AAA-999", + select_contents = TRUE, + vertical_navigation = "editor", + shift_enter_submit = TRUE +) +} +\arguments{ +\item{widget}{A \code{\link[=tabulator]{tabulator()}} HTML widget.} + +\item{elementAttributes}{Set attributes directly on the textarea element} + +\item{mask}{Apply a mask to the input to allow characters to be entered only in a certain order} + +\item{select_contents}{When the editor is loaded select its text content} + +\item{vertical_navigation}{Determine how use of the up/down arrow keys will affect the editor, +this can take three different types of value: \emph{hybrid}, \emph{editor} and \emph{table}} + +\item{shift_enter_submit}{Submit the cell value when the shift and enter keys are pressed} +} +\value{ +The updated \code{\link[=tabulator]{tabulator()}} HTML widget +} +\description{ +The \strong{textarea} editor allows entering of multiple lines of plain text +}