PricingBlog

Help forum

  • fouadtarabolsi-1327979910706499665

    FouadTarabolsi

    8

    1 year ago

    qr code
    hi,
    hello all, any idea how implements the following workflow? :


    - I open a page on a laptop
    - I get unique QR code
    - I scan it with my mobile
    - in the mobile I login
    -once I login the original screen with the barcode will automatically detect i successfully authenticated and give me my content.

    I assume as beginning that QR code page will be considered as an authentication page, also the value of the QR code will be unique for to identify the session .. or there are better and secure ways.
  • needtheanswers-1327929516722622524

    needtheanswers

    0

    1 year ago

    best way to manage which page is on which domain?
    Hi,
    what is the best way to have page 1 on www.myapp.com, page 2 on auth.myapp.com and all other pages on dashboard.myapp.com for example? If I set up multiple custom domains then every page is visible on every domain (as stated in the documentation).
  • ssssadsadasd-1327907091431686187

    ssssadsadasd

    1
    4

    1 year ago

    Question on formulas
    I have a questions on formulas.

    Suppose I have an app formula that outputs a text. Now, in a component/page I need the result of the app formula in several places. So, I would not want to call the app formula in every place but just get the output in one place and refer to it. My solution is to build a component formula, use the app formula there, and get the result. The formula has an two variables as inputs.

    I dont know whether what I am doing makes sense, i.e. whether is is the same thing as calling the app formula.

    anyone has any idea how to solve this? thanks
  • yoelfdz-1327621730717536418

    yoelfdz

    1
    1

    1 year ago

    DNS TXT propagated but not detected by Toddle
    Hi there! I’ve been trying to set up a domain for an app, but I’m running into an issue with the TXT record. DNS propagation seems to detect it correctly, but it’s still stuck on Toddle.

    The DNS provider’s support team suggested I reach out to you. Could you please help? 🙏

    UPDATE: It got approved but the domain was not working, now it's back to "Pending Validation"
  • uunicode-1327608393262960680

    unicodes

    1

    1 year ago

    input range bug on chrome
    My input range (min 0 max 5) is stuck at this point on chrome. It works on firefox, but on chrome shows the maximum at the beginning. Do you know please what to do in order to make it works normally?

    Thank you!
  • miles1991-1327595727190228994

    Miles

    18

    1 year ago

    Swiper JS
    Has anyone installed SwiperJS that is willing to share how to set it up?
    I'm adding the script and stylesheet in the head assets, then running a custom action on load. I have the attributes (data-swiper, data-swiper-wrapper, and data-swiper-slide) attached to the relevant elements, but I can't get it to work.

    Attached some images, including error in console log.

    Any help appreciated 🙏
  • sakamotochan-1327577565728079904

    Sakamoto

    3

    1 year ago

    Zaraz load on prerendered pages
    Hi, I'm trying to install Zaraz. I tried auto-inject and it works fine. However, it also triggers for prerendered pages.

    I could try triggering it manually with the script tag but it's more difficult to manage. Is there an easy way to get around this?
  • dark.yelllw-1327337780182778037

    Dark Yellow

    16

    1 year ago

    Global font?
    Is there a way to set global fonts? For the whole project instead of per page?
  • ssssadsadasd-1327313939264045137

    ssssadsadasd

    1

    1 year ago

    Cursor transition
    I want to avoid this ([see video](https://vimeo.com/1045755332/9ecec1e7d4?ts=0&share=copy)) abrupt change of cursor when I hover an element. I try to add some transition and select cursor but I could not find a solution. anyone has an idea? thanks [test app](https://editor.nordcraft.com/projects/turquoise_o_en_lars_permanent_chicken/branches/start/components/test4?canvas-width=800&canvas-height=800&rightpanel=style&selection=nodes.KBhGnMp2JElsHzqdROJee)
  • iampointi-1327279613033975809

    Stefan

    1
    3

    1 year ago

    Div Background Color from API Response/Variable
    Apparently that is not possible, or am I missing something?
  • benjamin.h-1326975724090818581

    Ben H

    0

    1 year ago

    Google OAuth Consent Screen issues
  • uunicode-1326966879885197374

    unicodes

    35

    1 year ago

    API response disappears after 0.1 sec..
    I'm getting the response for 0.1 seconds then disappears.
    Why the response disappears? It does it on PATCH.
  • achivas-1326874769961779210

    A-Chivas

    10

    1 year ago

    Undefined is suppose to be null but..
    dont know why it passes of as a string one day and null the other, also messes up the entire formula, her it is false for some reason, plz help
  • francomelanieh-1326857504315150398

    Nico

    1
    2

    1 year ago

    Session Cookie / Authtoken Problem
    Hey guys, i have a strange problem. I get my auth-token from the xano endpoint and iam trying to save it in toddle for later auth on other pages.

    But it doesent work, cookie doesent get set. So i looked into network tab and it shows me this error:

    This attempt to set a cookie via a 'Set-Cookie' header was blocked because the cookie had the attribute 'SameSite=Lax' but came from a cross-site response that was not the result of a top-level navigation.

    does anyone know this problem?
  • feraask-1326694782730240031

    KillerK009

    2

    1 year ago

    Can I Optimize? Reducing Repeated Use of Map in Formula to Set 2 Values
    I'm trying to calculate and add 2 new values (tag and label) to every element in an array where the 2nd new value (label) is dependent on the value of the first (tag). Is it possible to set them both in 1 iteration of the Map function?

    For example, I use the Map function, do some calculation for every element, then Set the tag value first. After this but still in the same iteration of Map I want to use this newly calculated tag value to also set the label on this same element. Can I do this in a Toddle formula without having to use Map and iterate over the entire array again?

    Not a huge deal for what I'm dealing with right now since the arrays are pretty small and it performs it quickly enough, just wondering if it's possible to do it more efficiently or if I should even concern myself with trying to be as efficient with my formulas.

    I'm used to traditional coding so looping over the same array twice in a row doesn't feel right to my brain 😅 , I'd instead just use a loop like this:
    foreach (element in array) {
    element.tag = calculateTag() // calculate tag
    element.label = calculateLabel(element.tag) // calculate label based on tag value
    }