Help forum
- Why does the page reload when I click on the show password button I just made?
gperez0x
β 17 2 months ago
6 Nov 2024, 22:01
I can 't see where this error could come from . From no part of the clickable elements is something that should cause this to happen . Any idea of what this could be about ? - V2 broke my site
DameStJohn
3 2 months ago
6 Nov 2024, 17:23
- How to use toddle component in webflow and use the styling from webflow
Usama
3 2 months ago
6 Nov 2024, 12:08
- Help implementing basic spinner animation
Danny
6 2 months ago
6 Nov 2024, 04:03
I 'd like to implement a basic loading spinner animation . This could look something like this in css : <style>
.spinner {
width: 48px;
height: 48px;
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>The custom CSS field in the editor doesn 't seem to support adding keyframes . I see the animationstart , animationend , etc in the events panel , but where can I actually define the animation ? Thanks for any help ! - staging domains
Miles
7 2 months ago
5 Nov 2024, 14:02
I 'm having an issue connecting Google Auth to my staging domian since it doesnt allow _ in the allowed list of domains . I can 't see how to change my staging domain , or not even sure if I can . What is the solution ? TIA π I 've attached part of my staging domain , and the error I 'm seeing in Google Console - Feedback on refactor considerations for our popover component
Alfred
1 2 months ago
5 Nov 2024, 13:54
Hi , I am refactoring our popover component for my project and would love your input on two different implementation approaches I 'm considering . I have recently found inspiration in Radix UI βs approach to building their highly flexible primitives with a compound composition strategy . I am considering adopting this structure in a toddle context with the context feature and slots . This approach involves a self -contained popover component that handles all the functionality internally , making it straightforward to use . : This method uses a compound component structure , inspired by Radix UI , which provides more flexibility and composability but introduces more complexity . - Which approach would you prefer in terms of scalability and maintainability ? - Do you have any experience with one of these methods ? I would appreciate any insights or feedback on my considerations . π - Dev to Partner on Two Directory Builds
Alex
2 2 months ago
4 Nov 2024, 23:44
Hey everyone , looking for a supabase toddle pro . Ive created some cool stuff with toddle but it βs at the point where the ideas are ready to onboard customers and there are features that need more time than I can give them . Both businesses are directories . Is anyone available for consulting or contractor work ? Specifically : - Image and video compression and storage flows - Stripe payments in dashboard - Check over my forms - Select Option Values
Dov
15 2 months ago
4 Nov 2024, 18:57
How do I get the value of an attribute set at Option level , on an event at Select level . Example is I have a repeat on Options for weeks of the year and display that as each option (data comes from an API call ) . Each item in the api call has an ID . I am putting this into an Attribute variable called chosenWeekID . When I click on an Option , I want to trigger the onChange event and use the chosenWeekID to send to another API call . I understand that this needs to be triggered at select level . Thanks for any help . - Date format error
Vizualinx
10 2 months ago
3 Nov 2024, 18:33
I 'm trying to post data to supabase . i 'm getting a date format error (see screenshot ) . i tried using 'date from string ' formula , but it returns undefined . - How to sent a batch of rows to Supabase?
Vizualinx
β 15 2 months ago
3 Nov 2024, 15:55
what i have in the screenshot only sends the first row , i need to send all rows . how do i adjust the formula ? - Unable to query unknown letters
Mr.R
β 15 2 months ago
3 Nov 2024, 15:26
Hi , I 've managed to GET job listings through the api in my country (Sweden ) . When searching for anything without the letters " Γ , Γ , Γ " everything works properly , but including those letters will give me an error and the path for the query strings get formatted with random characters . How do i go about to solve this ? - how can i style the file uploader?
Vizualinx
11 2 months ago
3 Nov 2024, 13:46
- Keydown Enter
zefunha
11 2 months ago
2 Nov 2024, 23:37
Hi guys , I have a flow with keydown , The flow should only run if the enter key is pressed , but at the moment it runs when all keys are pressed . If seems like my if statement is not working . Any tips . The flow should trigger an api call when you hit enter .thanks - Renaming Packages
Olumise
3 2 months ago
2 Nov 2024, 19:27
Hi Guys , I want to rename a package I am working on but I am not seeing an option to that , can anyone guide me . Thank you - Does a response of 410 not count as an "Error" for Toddle API's "On Error" purposes?
Fisher
2 2 months ago
1 Nov 2024, 20:43
My workflow is attached . I have a Supabase edge function that returns a 410 error if the verification Token is expired . If I pass no token , I do get a redirect (toddle sees this as an error ) However , the page does not redirect if the token is expired , but a look at the network logs shows I do get a 410 response back . I could change the error code , but I was just curious if this is normal behavior ? Does a 4xx response not count as "error " for toddle 's API ?