No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Read BarCode in q-input open Donwload Windows

    Framework
    1
    3
    122
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      dwms last edited by

      When I read a bar code on input it opens a downloads window, how could I solve this problem?

      I read about it:

      $ (document) .ready (function () {
      $ ("# input") keydown (function (e) {
      if (e.which == 17 || e.which == 74) {
      e.preventDefault ();
      } else {
      console.log (e.which);
      }
      })
      });

      Would it solve? How would you apply in quasar?

      1 Reply Last reply Reply Quote 0
      • D
        dwms last edited by

        In quasar v0.17

        1 Reply Last reply Reply Quote 0
        • D
          dwms last edited by

          I read about it too

          $(’#id_number’).keydown(function(event){
          event.preventDefault();
          event.stopPropagation();
          });

          1 Reply Last reply Reply Quote 0
          • First post
            Last post