Skip to main content

Custom Requests

Data Manipulation Panel allows you to create your own initial and update requests with custom code.

Initial Request

Select - to choose an initial request, and then define the custom code:

docs/volkovlabs-form-panel/js/initial-request.js
loading...

Initial values

To support the Highlight changed values and Require Confirmation features, you need to use the setInitial({}) function within your custom code to update initial values:

setInitial({ value: 99, name: "Test" });

Update Request

Select - to choose an update request, and then define the custom code. Depending on the selected payload option, it will add all or only the updated values.

docs/volkovlabs-form-panel/js/update-request.js
loading...