Пример #1
0
 /// <summary>
 /// Removes a function from the OnChange event hander for an attribute
 /// </summary>
 public void RemoveOnChange(ExecutionContextFunctionHandler function)
 {
 }
Пример #2
0
 /// <summary>
 /// Sets a function to be called when the attribute value is changed
 /// </summary>
 public void AddOnChange(ExecutionContextFunctionHandler function)
 {
 }
Пример #3
0
 /// <summary>
 /// Removes a function to be called when the record is saved
 /// </summary>
 public void RemoveOnSave(ExecutionContextFunctionHandler function)
 {
 }
Пример #4
0
 /// <summary>
 /// Use this to remove an event handler for a text or number field that you added using addOnKeyPress.
 /// </summary>
 /// <param name="keyPressFunction">If an anonymous function is set using addOnKeyPress, it can’t be removed using this method.</param>
 public void RemoveOnKeyPress(ExecutionContextFunctionHandler keyPressFunction)
 {
 }
Пример #5
0
 /// <summary>
 /// Adds a function to be called when the record is saved
 /// </summary>
 public void AddOnSave(ExecutionContextFunctionHandler function)
 {
 }