You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Bob Rudis (JIRA)" <ji...@apache.org> on 2018/07/14 18:58:00 UTC

[jira] [Created] (DRILL-6611) Add [meta]-[Enter] js handler for query form submission

Bob Rudis created DRILL-6611:
--------------------------------

             Summary: Add [meta]-[Enter] js handler for query form submission
                 Key: DRILL-6611
                 URL: https://issues.apache.org/jira/browse/DRILL-6611
             Project: Apache Drill
          Issue Type: Improvement
          Components: Web Server
    Affects Versions: 1.14.0
            Reporter: Bob Rudis


The new ACE-based SQL query editor is great. Being able to submit the form without using a mouse would be even better.

Adding:

 
{noformat}
document.getElementById('queryForm')
 .addEventListener('keydown', function(e) {
 if (!(e.keyCode == 13 && e.metaKey)) return;
 if (e.target.form) doSubmitQueryWithUserName();
});
{noformat}
{{to ./exec/java-exec/src/main/resources/rest/query/query.ftl adds such support.}}

I can file a PR with the code if desired.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)