Pricing Blog

Help forum

  • dfeinberg5-1303966468056023112

    Danny

    6

    8 months ago

    How to think about multiple on success events
    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 always 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!
  • jocenunes-1303930399919050772

    Joce Nunes

    1

    8 months ago

    API Redirect Rules
    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?
  • stockton_f-1303856263322406933

    Stockton

    13

    8 months ago

    Overflow and Scrollbars
    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.
  • corvos_-1303841782270001162

    gperez0x

    7

    8 months ago

    Why does the page reload when I click on the show password button I just made?
    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?
  • beameupskoti-1303771673379475467

    DameStJohn

    3

    8 months ago

    V2 broke my site
  • usama_saleem-1303692578788479016

    Usama

    12

    8 months ago

    How to use toddle component in webflow and use the styling from webflow
  • dfeinberg5-1303570509513883658

    Danny

    6

    8 months ago

    Help implementing basic spinner animation
    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!
  • miles1991-1303358852426764418

    Miles

    7

    8 months ago

    staging domains
    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
  • alfred_66594-1303356811570843689

    Alfred

    1

    8 months ago

    Feedback on refactor considerations for our popover component
    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.

    Single popover component:
    This approach involves a self-contained popover component that handles all the functionality internally, making it straightforward to use.

    Compound popover with context:
    This method uses a compound component structure, inspired by Radix UI, which provides more flexibility and composability but introduces more complexity.

    Key questions:
    - 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. 🙂
  • alexsiale_17363-1303142796643008543

    Alex

    2

    8 months ago

    Dev to Partner on Two Directory Builds
    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
  • jubilant_courgette_93644-1303070554936578112

    Dov

    15

    8 months ago

    Select Option Values
    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.
  • elli4931-1302702088412725434

    Vizualinx

    10

    8 months ago

    Date format error
    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.
  • elli4931-1302662550353346633

    Vizualinx

    5

    8 months ago

    How to sent a batch of rows to Supabase?
    what i have in the screenshot only sends the first row, i need to send all rows. how do i adjust the formula?
  • mr.r5163-1302655074798932040

    Mr.R

    5

    8 months ago

    Unable to query unknown letters
    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?
  • elli4931-1302629948623949824

    Vizualinx

    11

    8 months ago

    how can i style the file uploader?