WebFormItem
4D.WebFormItem
objects are properties of the 4D.WebForm
object returned by the Web Form
command.
A classe WebFormItem
é detalhada na documentação Qodly.
História
Release | Mudanças |
---|---|
20 R2 | Adicionado |
Objeto WebFormItem
.addCSSClass(className : string) adds the class specified in className to the component |
.hide() hides the component |
.removeCSSClass(className: string) removes the class specified in className from the component |
.show() makes the component visible |
.hide()
.hide()
Parâmetro | Tipo | Descrição | |
---|---|---|---|
Não exige nenhum parâmetro |
Descrição
The .hide()
function hides the component.
For more information, please refer to the .hide()
description in the Qodly documentation.
.show()
.show()
Parâmetro | Tipo | Descrição | |
---|---|---|---|
Não exige nenhum parâmetro |
Descrição
The .show()
function makes the component visible.
For more information, please refer to the .show()
description in the Qodly documentation.
.addCSSClass()
.addCSSClass(className : string)
Parâmetro | Tipo | Descrição | |
---|---|---|---|
className | string | -> | Nome da classe CSS a ser adicionada ao componente |
Descrição
The .addCSSClass
function adds the class specified in className to the component.
For more information, please refer to the .addCSSClass
description in the Qodly documentation.
.removeCSSClass()
.removeCSSClass(className: string)
Parâmetro | Tipo | Descrição | |
---|---|---|---|
className | string | -> | Nome da classe CSS a ser removida do componente |
Descrição
The .removeCSSClass()
function removes the class specified in className from the component.
For more information, please refer to the .removeCSSClass()
description in the Qodly documentation.