24 lines
561 B
R
24 lines
561 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/htmlSetXLength.R
|
|
\name{htmlSetMinLength}
|
|
\alias{htmlSetMinLength}
|
|
\title{Set the minimum length on a text or textarea input}
|
|
\usage{
|
|
htmlSetMinLength(input, length)
|
|
}
|
|
\arguments{
|
|
\item{input}{The Shiny input to set the length attribute on}
|
|
|
|
\item{length}{The minimum length allowed on the input}
|
|
}
|
|
\value{
|
|
The modified input
|
|
}
|
|
\description{
|
|
Set the minimum length on a text or textarea input
|
|
}
|
|
\examples{
|
|
x <- shiny::textInput("input_id", "Some text input")
|
|
htmlSetMinLength(x, 3)
|
|
}
|