Pricing Blog

Help forum

  • benjabievres-1308731001555517441

    benjabievres

    6

    7 months ago

    Changing items in a list generated from an API call
    Hello,

    I would need advices on how to proceed for the following, please:

    I generated a List from an API call. I would like to be able to switch a boolean or to change the value of a field of some items, and to click a Save button.

    But, since the list items are generated from an Array I got from an API call, how can I set the different new values?

    To summarize: I want the list to be filled with data coming from the API call response array, I want to be able to change some values, and then to update data, calling another endpoint (I didn't build the endpoint yet).

    How can this type of use-case can be achieved?

    Thanks
  • rrrrnnyg-1308626718768107622

    Rrrrnnyg

    6

    7 months ago

    Page visit behavior will be included in the request?
  • liltisa8661-1308592405674590309

    Hausia

    5

    7 months ago

    Filtering Airtable API Call
    Any ideas why this filter isn't working?
  • jubilant_courgette_93644-1308500004071149620

    Dov

    3

    7 months ago

    "application/octet-stream" xlsx file
    Hi

    What is the best way to save and serve a spreadsheet that is being sent as a stream?

    Thanks for your help.
  • godwin_nocode-1308495085331153038

    Godwin

    2

    7 months ago

    How can I turn my javascript code into a toddle component?
  • carterux-1308423347402571826

    Seun Orofin

    25

    7 months ago

    My toddle site crashed - please help
    I was working on a page and it suddenly went all blank while i ca n still see all my elements and components on the page
  • mesmoiron-1308368878266482688

    mesmoiron

    2

    8 months ago

    Wishlist functionality (no hurry)
    In the far future I want to make a component that is a bit like Google domain verification. That is you can copy or download a piece of code and embed that in your header.

    It also is a bit like Twitter and FB that let you add functionality to your website such that it interacts with the mother ship (Google/Facebook). In the case of Google, it crawls the website, and my functionality should be crawled and interact.

    Can I make such a component with Toddle?
  • tomthebigtree-1308340060302610432

    Tom Ireland

    8

    8 months ago

    Best practice for OTP verification
  • jubilant_courgette_93644-1308201933198200862

    Dov

    11

    8 months ago

    Issue with project actions
  • lordalmighty_-1308137360436756573

    Lord Almighty

    2

    8 months ago

    Cant Change Project Name
    For some reason, whenever I try to change a project name, I get an error.
  • asad_90597-1307794880445022298

    asad

    15

    8 months ago

    removing multiple files from variable only works backwards
  • benjamin.h-1307528353082769468

    Ben H

    6

    8 months ago

    Question about the Wow dashboard demo project
    I have a question about how the sidebar is working. When in mobile view, when you open the sidebar menu, it takes up the entire screen. This is apparently because the container for the sidebar has a .showMenu class that is used for the mobile view. However, I don't understand how this class is making it take the full screen. When I click on the class, the panel is just empty. What is this class doing? I'd like to replicate this functionality.


    Link to demo project: https://toddle.dev/projects/wow_dashboard/branches/main/components/HomePage?mode=design&leftpanel=design&canvas-width=772&canvas-height=800&rightpanel=style
  • poulpybifle-1307358095684407398

    Sacharbonne 🤙🦥

    0

    8 months ago

    Copy to clipboard trouble
  • asad_90597-1307084636257779722

    asad

    15

    8 months ago

    delete file from a variable
    i have a file input with multiple attributes. on change i set a variable "files" to even.target -> get.files. it works fine. i have a dive that repeats the "files" with button "delete" . i want to remove the file that is clicked from the "files" variable. how do i do it
  • burner918-1307010177022689361

    Sean

    21

    8 months ago

    What is the correct way to submit a form in toddle?
    My initial understanding was that the correct way to submit a form in toddle is to set a submit event on the form element and then add a type=submit attribute to the button element inside the form that would trigger the form submission. Then I put my API call or any logic into the form's submit event actions. But while troubleshooting a form that wasn't submitting, I asked the toddle AI and I got this (see screenshot).

    Does this mean that the correct way to set up the form in toddle is to
    1) Not set any event on the form element
    2) Set a type=button attribute on the submit button.
    3) Set the submission logic or API call to this submit button's click event?