Cards Form>>Payment field: Ability to display all the products in a single page

  • bryan.sampson11
    Asked on June 16, 2019 at 9:11 PM

    i want my form to show a complete list not #s. 
    it shows a list on mobile view but i want a list on all views.

    Jotform Thread 1858674 Screenshot
  • roneet
    Replied on June 17, 2019 at 2:49 AM

    Viewport height is different in different devices and systems so the products are paginated to fit it.

    I'm afraid we can not adjust this right now. But, I am escalating your request to our developers for consideration.

    In the meantime, when embedding the form, I can suggest using iframe code with the following modification. This should help to set the fixed height for the form and you can increase it (highlighted red) so products were shown on the same page:

     

        <iframe

          id="JotFormIFrame-91667719819172"

          onDISABLEDload="window.parent.scrollTo(0,0)"

          allowtransparency="true"

          allowfullscreen="true"

          allow="geolocation; microphone; camera"

          src="https://form.jotform.co/91667719819172"

          frameborder="0"

          style="width: 1px;

          min-width: 100%;

          min-height: 800px;

          height:539px;

          border:none;"

          scrolling="no"

        >    </iframe>

    Thanks.