You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 13, 2024. It is now read-only.
I am using the <form-builder/> directive in my application and would like to store the produced form schema in my own back-end database. However, when loading the application, the form builder sends a request to the form.io API (api.form.io/form). How can I prevent the form builder from sending this request?
This is currently how I have embedded the directive:
<form-builder form="vm.formSchema"/>
where formSchema refers to a property in my controller that holds the form schema object. I have experimented with the various scope attributes of the directive (e.g. src, url, options.noSource), but I can't seem to understand how to do it correctly without any documentation of these attributes.