Help forum
- How to think about multiple on success events
Danny
6 8 months ago
When building an API , there are events , such as on success . However , there are also the same events when building different workflows . I 'm curious if anyone has thoughts on when to do it one way vs . the other (screenshots attached ) . They way I 've been thinking about it is setting the event on the API itself if I know it 's something I 'll want to do in that instance and setting the event in the course of a workflow if it 's specific to a certain instance , but not necessarily something I would want to do in all cases where I might call the API . Also , does the event within the API get called before the event in the workflow ? Hopefully that makes sense ! - API Redirect Rules
Joce Nunes
1 8 months ago
I 'm setting up a redirect rule so that if my API response status is not 200 , it should redirect to the Home page . The API has both auto -fetching and server -side fetching enabled . The issue is that , even when the API returns a 200 status (meaning it shouldn 't redirect ) , the rule is ignoring this condition and redirecting to Home constantly . I also tested using "is server , " but the redirection still happens without respecting the established logic . Does anyone know if this could be a bug , or am I doing something wrong in the implementation ? - Overflow and Scrollbars
Stockton
13 8 months ago
I have 6 scrollbars ! ! ! Amazing ! But how do I not have 6 ? I 've tried things but alas , I can 't figure out how to make it so I don 't have all the scrollbars . Also need to the main content area to allow for scrolling but not the left nav . - Why does the page reload when I click on the show password button I just made?
gperez0x
7 8 months ago
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 8 months ago
- How to use toddle component in webflow and use the styling from webflow
Usama
12 8 months ago
- Help implementing basic spinner animation
Danny
6 8 months ago
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 8 months ago
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 8 months ago
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 8 months ago
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 8 months ago
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 8 months ago
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
5 8 months ago
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
5 8 months ago
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 8 months ago