Submit button for Read Only Permissions

Hello! I have a form that I have linked to a dataset, I need a button to submit this form and use it to filter the database and produce the results. From what I can see, I can only create a submit button for Read-Write and Write permissions. Can anyone tell me how I can create or code a Submit button to work with my form and filter the database?

Thanks!

You can’t use a submit button on a read only dataset as the submit button does exactly what it says, it submits user inputs on a form for example into a dataset.
https://support.wix.com/en/article/adding-a-submit-button-to-your-form
https://www.wix.com/corvid/tutorial/how-to-create-a-custom-form-and-connect-it-to-a-database
https://www.youtube.com/watch?v=VyMsDTwge18
https://www.wix.com/corvid/feature/custom-forms

To do what you want to do, then simply just add a normal button and use it with an event handler like an onClick for example, so that when the user clicks on the button it runs the filter query.
https://support.wix.com/en/the-wix-editor/button
https://www.wix.com/corvid/reference/wix-data.WixDataQuery.html
https://www.wix.com/corvid/reference/wix-dataset.Dataset.html#setFilter

thank you I will give that a shot