Action for the Grid Component to render a button that on click send the selected rows data to the server.
The button is disable when clicked until a response or an error, this is to avoid multiple clicks to overload the server.
The data is sent in the request as JSON format.
ID of GridContainer widget to send the selected items.
By default: first grid on the screen.
Rest URL to where the dirty rows are sent.
The additional CSS classes for the button.
Rest HTTP Method in which way the information will be sent to the HTTP Service request.
Accepted values: 'POST', 'PUT' or 'DELETE'.
Default value: 'POST'
POST - Request that the resource at the URI do something with the provided entity. Often POST is used to create a new entity, but it can also be used to update an entity.
PUT - Store an entity at a URI. PUT can create a new entity or update an existing one. A PUT request is idempotent. Idempotency is the main difference between the expectations of PUT versus a POST request.
DELETE - Request that a resource be removed; however, the resource does not have to be removed immediately. It could be an asynchronous or long-running request.
When set to True it will refresh the data from the grid, fetching new data again from the server.
Set the functions that will trigger confirmation box to verify or accept something.
eg: "IsOwner; AreSure"
Set the Validation functions that will be triggered before sending the data to the server.
Set False to disable the button.
Set False to hide the button.
Check if can update only the rows that were updated. Defaults true.
Check if can send the valid rows to the server, even when there are invalid rows. Defaults true.
Label to be presented inside the action button.