Navigation

    APPDRAG Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Karol W
    3. Topics
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 4
    • Best 0
    • Groups 0

    Topics created by Karol W

    • K

      SOLVED Copyright Images
      General Discussion • • Karol W

      2
      0
      Votes
      2
      Posts
      206
      Views

      Joseph Benguira

      @karol-w it's not really possible, someone could just take a screenshot of the page and defeat any protection measure

    • K

      SOLVED Version Control
      Features requests • • Karol W

      4
      0
      Votes
      4
      Posts
      368
      Views

      J

      @karol-w nop we don't support multiple concurrent users on the same page yet ... But it's on our roadmap 🙂

    • K

      SOLVED Searchable list using Cloud Backend / API Functions
      Cloud Backend (Cloud DB, API Builder) • • Karol W

      3
      0
      Votes
      3
      Posts
      390
      Views

      Joseph Benguira

      Hey @Karol-W

      "Data source Cloud Backend" is to configure which datasources are loaded on the page (don't load too many or your page will be slow)
      "Triggers ->Cloud Backend" is to configure an action that will call a cloud backend function

      Dynamic datasources are useful to generate pages based on url parameters, they are useless for this kind of interaction you want to do here.
      So I would recommend you to remove that data source and replace it with a regular API call instead
      We have more tutorials about generating dynamic content without dynamic datasources here: https://support.appdrag.com/doc/Creating-Dynamic-content-using-Factory
      https://support.appdrag.com/doc/Creating-Dynamic-content-using-Visual-Factory

      here you have a dropdown and you want to change the gallery content when the dropdown value is changed, so you should write some jquery code to capture the change on that SELECT dropdown $( "SELECT[name='YourSelectNameHere']" ).change(function() { var newVal = $("SELECT[name='YourSelectNameHere']").val() //Call your function to load data from the api and display it });