Interface FormChangeHandler


public interface FormChangeHandler
Interface for handling any form value changes.
Since:
4.0
Author:
JBStrap
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onFormChanged(Form form, FormItem<?,?> changedItem, Record record)
    The method is called when any field's value is changed on the Form, or if a new record is loaded to the form.
  • Method Details

    • onFormChanged

      void onFormChanged(Form form, FormItem<?,?> changedItem, Record record)
      The method is called when any field's value is changed on the Form, or if a new record is loaded to the form.
      Parameters:
      form - The Form component instance, on which the value have changed
      changedItem - The form item component instance, on which there was a change, or null if a new record is loaded. In this case, every form item value changes
      record - The form's new record, which contains the changed values