<< Click to Display Table of Contents >>

GetInformation Commands - INPUT_CHECK_VALIDITY

To get the results of the OnCheckValidity event's script execution of the button, use the INPUT_CHECK_VALIDITY related command below.

This command only supports e-Form.


INPUT_CHECK_VALIDITY

Get the results of the OnCheckValidity event's script execution of the first button added to the current report. If it succeeds to run, "valid" is returned, and if it fails to run "" is returned. Note that it returns "valid" if the OnCheckValidity event of the first button has no script. When the command is called, if there is a component that you are editing in the current report, exit the editing status. In addition, the changes apply to components and return the focus.(OnValueChanged and OnKillFocus events are called)

INPUT_CHECK_VALIDITY_AT=ReportIndex

Get the results of the OnCheckValidity event's script execution of the first button added to the specified report. If successful, execution is returned to "valid". If you set the execution failure or incorrect index, it will be returned to "". Note that it returns "valid" if the OnCheckValidity event of the first button has no script. When the command is called, if there is a component that you are editing in the specified report, exit the editing status. In addition, the changes apply to components and return the focus.(OnValueChanged and OnKillFocus events are called)

INPUT_CHECK_VALIDITY_AT=ReportIndex,PAGE_AT=PageIndex

Get the results of the OnCheckValidity event's script execution of the first button added to the specified page of the specified report. If successful, execution is returned to "valid". If you set the execution failure or incorrect index, it will be returned to "". Note that it returns "valid" if the OnCheckValidity event of the first button has no script. The PageIndex must be specified as a one-based index. When the command is called, if there is a component that you are editing in the specified page of the specified report, exit the editing status. In addition, the changes apply to components and return the focus.(OnValueChanged and OnKillFocus events are called)

INPUT_CHECK_VALIDITY_CURRENT_PAGE

Get the results of the OnCheckValidity event's script execution of the first button added to the current page. If it succeeds to run, "valid" is returned, and if it fails to run "" is returned. Note that it returns "valid" if the OnCheckValidity event of the first button has no script. When the command is called, if there is a component that you are editing in the current page, exit the editing status. In addition, the changes apply to components and return the focus.(OnValueChanged and OnKillFocus events are called)

INPUT_CHECK_VALIDITY_PAGE_AT=PageIndex

Get the results of the OnCheckValidity event's script execution of the first button added to the specified page. If successful, execution is returned to "valid". If you set the execution failure or incorrect index, it will be returned to "". Note that it returns "valid" if the OnCheckValidity event of the first button has no script. The PageIndex must be specified as a one-based index. When the command is called, if there is a component that you are editing in the specified page, exit the editing status. In addition, the changes apply to components and return the focus.(OnValueChanged and OnKillFocus events are called)