Class type Ext_form_action_Action.statics


class type statics = object .. end
Inherits
method _CLIENT_INVALID : Js.js_string Js.t Js.prop

Failure type returned when client side validation of the Form fails thus aborting a submit action. Client side validation is performed unless Ext.form.action.Submit.clientValidation is explicitly set to false.

Defaults to: 'client'

method _CONNECT_FAILURE : Js.js_string Js.t Js.prop

Failure type returned when a communication error happens when attempting to send a request to the remote server. The response may be examined to provide further information.

Defaults to: 'connect'

method _LOAD_FAILURE : Js.js_string Js.t Js.prop

Failure type returned when the response's success property is set to false, or no field values are returned in the response's data property.

Defaults to: 'load'

method _SERVER_INVALID : Js.js_string Js.t Js.prop

Failure type returned when server side processing fails and the result's success property is set to false.

In the case of a form submission, field-specific error messages may be returned in the result's errors property.

Defaults to: 'server'