Hello, I am trying to provide a dropdown list of all countries so the user can choose any country and the next page shows relevant information. In this case, I already have a table in airtable with countries and their info in separate columns. But I dont want softr to create a new record instead pull the record based on the country name from the table, how can I do this?
@manishroit do you need that for filtering some data or just have 2 step forms ?
Its just a basic redirect to corresponding pages based on the input country country on the form. I would say filtering based on the country name. I can actually create a scenario on the back end make.com to match records and show that but it takes a while to process and then I need to add a loading page and do redirection so wanted to know if there is a way to do it just inside softr and airtable.
name.
I think you are looking for send to URL option here as a destination which we don’t have except make
Something like that. But did a workaround for this. Created an automation inside Airtable which works 90% but sometimes if the automation takes a second longer, the page doesn’t load the content in Softr, at which point, I just added a refresh button and a note for the user to refresh if they don’t see the result. Thank you artur.
You can add some artificial delays
<script>
window.formRedirectDelay = {
form1: 5000,
form2: 10000,
}
</script>
Great! I think this will be very handy! Thank you @artur