onDataEditAccept - event of object PmiWCheck
Description:
The event fires after changing the item value.
Parameters:
pMe | (Object) Reference to the graphic item where the event rises. |
---|
pEvent | (Object) A referrence to object describing detailed information about the specific event. The pEvent parameter is not used here because this event does not need any additional information. |
---|
Note:
This event will be called only if the
Control enabled configurator is checked.
This event is also functional for
Web panels.
For direct data connection between this item value and the application variable it is much easier to use the
data binding in the
Value configurator. The
onDataEditAccept event may be used only for more complex concepts of value acquiring, or another reasons for difference recognition.
Example1:
In the event, the value of the graphic item is copied into the
HeatEnable variable, that is located in the
Data1 object (of the
PmData type).
This example is not functional for Web panels because the Web client value cannot be directly assigned to other objects in the Web server.
VBScriptSelect and copy to clipboard
pMe.Pm("../Data1/#vars/HeatEnable").Value = pMe.Value
Example2:
This example will be functional also for
Web panels. The value is no assigned directly into the object on the Web server, but just the method designer's of
PmPanel object is called. This method is then called on the server and there it is possible to save the transmitted value anywhere.
JavaScriptVBScriptSelect and copy to clipboard
pMe.PmPanel.Methods.SetMyValue(pMe.Value);
pMe.PmPanel.Methods.SetMyValue pMe.Value