Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Constance Hua
    3. Topics
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    Topics created by Constance Hua

    • C

      SOLVED Cloud Backend trigger formula parameter
      General Discussion • • Constance Hua

      4
      0
      Votes
      4
      Posts
      213
      Views

      Joseph Benguira

      @constance-hua your logic seems too complex ... Instead please try this

      hide your original button create a new button that open your confirmation modal if accepted, generate a click to the real hidden button. Eg: $("#myHiddenButton").trigger('click')

      done 🙂

    • C

      SOLVED Modal content blocked (2) - Refused to connect
      General Discussion • • Constance Hua

      3
      0
      Votes
      3
      Posts
      310
      Views

      C

      @joseph-benguira Thanks for your response!
      No I am redirecting to a website, but I need it to open in a modal. The CORS origin seems to be the blocker but I found a solution:
      Instead of opening a modal, I just added the following parameter to the <span> item:

      <span onclick="window.open('https://www.website.com'); return false;">Your text </span>

      I hope it can help others!
      Cheers