<abstract> new ATextInput()
Extends
- AInput
Methods
-
getRawValue()
-
Returns:
- Type
- string
-
getValue()
-
Obtém o valor atual do componente. O método
setBlankWhenNull
pode fazer com que a resposta varieReturns:
- Type
- string
-
isBlankWhenNull()
-
Retorna o valor alterado, caso tenha executado o 'setBlankWhenNull(on)'.
Returns:
- Type
- boolean
-
isNullable()
-
Retorna
true
caso o campo aceite 'null' como valorReturns:
- Type
- boolean
-
setBlankWhenNull(on)
-
Caso o valor
true
seja informado, ao executar ogetValue()
será retornado uma string vazia quando o campo estiver vazio. Do contrário, será retornadonull
.Parameters:
Name Type Description on
boolean Returns:
- Type
- this
-
setMask(mask)
-
Informa a mascara que será utilizada pelo input
Parameters:
Name Type Description mask
string Returns:
- Type
- this
-
setMaxLength(value)
-
Parameters:
Name Type Description value
number Returns:
- Type
- this
-
setNullable(on)
-
Caso seja informado
true
o campo irá assumir 'null' como valor quandosetValue(null)
for executado.Parameters:
Name Type Description on
boolean Returns:
- Type
- this
-
setRawValue(value)
-
Parameters:
Name Type Description value
string Returns:
- Type
- this
-
setValue(value)
-
Atualiza o valor atual do componente
Parameters:
Name Type Description value
string | number Returns:
- Type
- this