Zum Hauptinhalt gehen

How to force Display form to open at the top of the form instead of at the bottom...?

Kommentare

1 Kommentar

  • Permanently deleted user

    Update on this:

    When a form loads, the first element on the form that can be interacted with becomes "focused" in your browser. This is probably based on an accessibility requirement so that you can interact with the form elements easily by keyboard (eg, using the tab key). 

     

    When loading many text elements and one footer with buttons, then the buttons are the first element that can be interacted with, so the first button becomes the "focused" item, and the form is scrolled down to it.

     

    Workaround: Remove buttons if not needed or add any interact-able element (textbox, checkbox, hyperlink, etc) at the top of the form, that should work around the issue. The element could be hidden if needed using the Inject CSS activity in a load event. It's not a clean workaround, but it seems to get the job done.

    eg.

    .gcx-forms-myUniqueCheckBoxId {

    display: none;

    }

     

     

    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.