EditType - property of the PmfTable object
Description:
The property returns or sets editing permission of table cells.
Values:
no (default) - Editing of table cells is disabled.
auto - Editing of table cells is enabled.
Note:
Property access
for read and write.
This property is also functional in
web panels.
Table cell editing can be enabled only if
SelType ==
"cell".
You can start editing the table cell either by left mouse button double-clicking the cell or by pressing the
Enter key over the selected cell.
Confirm editing either by pressing the
Enter key or by clicking outside the cell area. Cancel the editing by pressing the
Esc key. After editing, the
onEditAccept event is triggered.
Example1:
JavaScriptSelect and copy to clipboard
oTable.EditType = "auto";
// Writing into the property
var sCellEdit = oTable.EditType;
// Reading from the property