EditType - property of the PmfNumber object
Description:
Editing type.
Values:
"auto" (default) - Editing is enabled
"readonly" - Read only (the text cannot be changed, but can be selected and copied)
Note:
Property access
for read and write.
It is possible to write into this property only if the
PmForm window has not been opened yet.
This property is also functional in
Web panels.
Example:
JavaScriptSelect and copy to clipboard
var oNumber = oForm.CreateItem("number", "Id1", "number of rows", "EditType:readonly;");
var sEditType = oNumber.EditType;
// Reading from the property
oNumber.EditType = "auto";
// Writing into the property