Promotic

onCellEdited - event of the PmgWTable object

Description:
The event is triggered when cell editing is finished (e.g. by the Enter key).
Parameters:
pMe(Object) Reference to the PmgWTable object where the event rises.
pEvent(Object) Reference to the object describing detailed information about the specific event.
pEvent.Row - (Long) [for reading]Row of edited cell (zero-based index, counted including the fixed part).
pEvent.Col - (Long) [for reading] Column of edited cell (zero-based index, counted including the fixed part).
pEvent.CellText - (String) [for reading] Edited text
Note:
The event is triggered only if Interaction property is set to 1, 2 or 3.

This event is also functional in Web panels.
See also:
Example:
JavaScriptVBScriptSelect and copy to clipboard

var nRow = pEvent.Row;
var nCol = pEvent.Col;
var val = Pm.ToNumber(pEvent.CellText);
if (val < 10000)
{
pMe.SetCellBackColor(nRow, nCol, "transparent");
}
else
{
pMe.SetCellBackColor(nRow, nCol, "#ffff00");
}
pMe.Draw();
PROMOTIC 9.0.27 SCADA system documentation MICROSYS, spol. s r.o.

Send page remarkContact responsible person
© MICROSYS, spol. s r.o.