This event allows to trigger an action when a row has an error.
JSON structure: {
type: ['multiple'],
value: ['checked'],
row: [JSONData],
action: ['changed'],
count: ['rows with error on the current page'],
total: ['total rows with error']
}
The
type can be
'new' (created row error) or
'changed' (updated row in error), the
value will have the name of the field that generated the event, the
row will have the
JSON data, that will have the grid structure, the
action can have the value
'added' or
'removed', depending if is being created or removed the error that generated the event. The
count on the error event is the number of the rows having at least one cell value with an error on the current page and the
total is similar to the count but in the global context, in this case is the count of errors on all pages, in case of having pagination and have more than one page, otherwise
count and
total will have the same value.
To have access to the values returned when the event runs, should be used the NotifyGetMessage action to get the JSON text, then use the output of that action on the JSONDeserialize action to build a structure (RowEventStr structure) filled with the row information, additionally to have access to each value of the row individually, should be deserialized using again the JSONDeserialize action, but receiving the RowEventStr.Row and defining as structure the grid data type.