This is used to show the OTHER tab for various host types.
This was copied from EnsConfigProperty.
classmethod ShowCheck(pHelp As %String = "", pLabel As %String = "", pStyle As %String = "", pName As %String = "", pValue As %Boolean = 0, onClick As %String = "") [ Language = objectscript ]
Show a user entry field in the form.
pHelp is the hint (hover text) for the field, pLabel is the label text for the field,
pStyle is the value, pName is the value,
pValue is the value,
onClick is any JavaScript expression you want to execute in addition to the usual setting of the on/off value.
Show a user entry field that also provides a read-only drop-down list for the user's reference.
pHelp is the hint (hover text) for the field, pLabel is the label text for the field,
pStyle is the value, pName is the value,
pValue is the value, pRS is the result set that produces the drop-down list
(you must have this result set already prepared, usually by issuing a class query),
pField is the name of the (single) field of interest in this result set
pPrefix is a text prefix to prepend to pName to make the
value for the text field, so that it will be unique in all variants of the form in the generated
JavaScript. JavaScript functions need the to update the field programmatically.
classmethod ShowFormStart(pHelp As %String, pLabel As %String, pName As %String, pHostType As %String, pHostName As %String, pSubtype As %String = "") [ Language = objectscript ]
classmethod ShowLine(pHidden As %Integer = 0, pPrefix As %String = "") [ Language = objectscript ]
Show a user drop-down select box, in which one of the options is to (deliberately) select nothing for now.
pHelp is the hint (hover text) for the field, pLabel is the label text for the field,
pStyle is the value, pName is the value,
pValue is the value. pRS is the result set that produces the drop-down list
(you must have this result set already prepared, usually by issuing a class query),
pField is the name of the (single) field of interest in this result set, pHidden indicates whether or not to hide the field.
Unless you are hiding and un-hiding rows, you do not need pPrefix. pPrefix is a text prefix to prepend to pName to make the
value for this row, so that it will be different from the pName value for the field it contains.
You also need to ensure that each
value is unique among ALL faces and ALL variations of this dialog in the generated
JavaScript. JavaScript functions need the
to hide or un-hide the field programmatically as in selectSubOpt().
classmethod ShowSpace() [ Language = objectscript ]
classmethod ShowText(pHelp As %String = "", pLabel As %String = "", pStyle As %String = "", pName As %String = "", pValue As %String = "", pSize As %String = "40", pHidden As %Boolean = 0, pPrefix As %String = "", pErr As %String = "") [ Language = objectscript ]
Show a table row
containing a user entry field in the form.
pHelp is the hint (hover text) for the field, pLabel is the label text for the field,
pStyle is the value, pName is the value,
pValue is the value, pSize is a number for the field width (default 40).
Unless you are hiding and un-hiding rows, you do not need pPrefix. pPrefix is a text prefix to prepend to pName to make the
value for this row, so that it will be different from the pName value for the field it contains.
You also need to ensure that each
value is unique among ALL faces and ALL variations of this dialog in the generated
JavaScript. JavaScript functions need the
to hide or un-hide the field programmatically as in selectSubOpt().
pErr is any error text you might wish to have displayed next to the field.
classmethod ShowTrueFalse(pHelp As %String = "", pLabel As %String = "", pName As %String = "", pValue As %Boolean = 0, pHidden As %Boolean = 0, pDisabled As %Boolean = 0, pPrefix As %String = "") [ Language = objectscript ]