Uploaded image for project: 'camunda BPM'
  1. camunda BPM
  2. CAM-7846

I can submit form with keyboard shortcut

      We would like to be able to submit an embedded form using a keyboard shortcut (proposal: ctrl-enter).

        This is the controller panel for Smart Panels app

            [CAM-7846] I can submit form with keyboard shortcut

            Seif added a comment -

            Notice:
            The shortcut is only trigged from inside any input field in an embedded form to conform to the usual behaviour of form submission shortcuts.
            This is different from the behaviour of existing tasklist shortcuts that get triggered from anywhere inside the window except input fields.

            Seif added a comment - Notice: The shortcut is only trigged from inside any input field in an embedded form to conform to the usual behaviour of form submission shortcuts. This is different from the behaviour of existing tasklist shortcuts that get triggered from anywhere inside the window except input fields.

            When hitting ctrl+enter on Chrome/Linux the keyCode is 10 and not 13 (see [1]). We should change

            if (e.ctrlKey && e.keyCode === 13) 
            

            to

            if (e.ctrlKey && (e.keyCode === 13 || e.keyCode === 10))
            

            [1]: https://bugs.chromium.org/p/chromium/issues/detail?id=79407#c2

            Roman Smirnov added a comment - When hitting ctrl+enter on Chrome/Linux the keyCode is 10 and not 13 (see [1] ). We should change if (e.ctrlKey && e.keyCode === 13) to if (e.ctrlKey && (e.keyCode === 13 || e.keyCode === 10)) [1] : https://bugs.chromium.org/p/chromium/issues/detail?id=79407#c2

            Seif added a comment -

            smirnov Nice catch.

            Seif added a comment - smirnov Nice catch.

              yana.vasileva Yana Vasileva
              mariusz.sielski Mariusz
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: