Use inputs without form for database query

Hi! I was wondering how we could get the value of input fields (and checkboxes) without having to use a form to access them in a server action?

With a form the variables in the server action can be auto populated, so I assume I need to get the variables of the inputs a different way. Please let me know!

Does anyone know how to do this? I feel like it is supposed to be simple but I am stuck. Do I need to create a server connect with input variables?

Try please

You can get value ;
{{Input1.value}}

Doesnt matter checkbox ,input field etc … and if this answer not enought please give more details

(Sorry for my short answer … mobile phone…)

You can use GET variables (parameters) in server connect and then in App Connect assign the input values to your server connect parameters so that the data is passed to it:

Thank you that helps me understand better, however I don’t think it does what i’m looking for.

I have a form upload using the S3 upload connector that automatically calls the server action. I am hoping to pass details from the inputs with this server action. How would I connect the server connection to the S3 upload? Thanks!

Maybe you should just explain what exactly are you trying to achieve a little more detailed, so that we can help.

For sure.

I have an S3 upload control to upload a document. I want to also add some extra information to this upload document server action which I get from an input form and a checkbox. The S3 upload directly triggers a server action. I want to be able to pass the values from the input and checkbox to this server action at the same time to use in a database query. Please let me know if I can elaborate on anything