Ejemplo n.º 1
0
 /// <summary>
 /// Removes a function from the OnChange event hander for an attribute
 /// </summary>
 public void RemoveOnChange(ExecutionContextFunctionHandler function)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets a function to be called when the attribute value is changed
 /// </summary>
 public void AddOnChange(ExecutionContextFunctionHandler function)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Removes a function to be called when the record is saved
 /// </summary>
 public void RemoveOnSave(ExecutionContextFunctionHandler function)
 {
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Adds a function to be called when the record is saved
 /// </summary>
 public void AddOnSave(ExecutionContextFunctionHandler function)
 {
 }