Code Monkey home page Code Monkey logo

Comments (6)

kraaden avatar kraaden commented on May 24, 2024 1

@StuartCreed Now the autocomplete should display suggestions even if you insert text by mouse+right click (in the version 8).

from autocomplete.

hyyan avatar hyyan commented on May 24, 2024

@kraaden would be nice to have this feature implemented

from autocomplete.

pontikis avatar pontikis commented on May 24, 2024

Hello @kraaden

yes, it would be nice to have a method to fetch suggestions programmatically

Something like the jquery UI "search" -> https://api.jqueryui.com/autocomplete/#method-search

Thank you in advance

PS: showOnFocus is helpful but not the exact solution 👍

from autocomplete.

StuartCreed avatar StuartCreed commented on May 24, 2024

@kraaden Great package many thanks for your time. I would agree an improvement would be to trigger the update programmatically, as I cannot find a way for right click + paste to be detected by the showOnFocus, even using the focus() native javascript command. The user has to manually type to invoke the fetch/update after right click and paste.

from autocomplete.

eeemarv avatar eeemarv commented on May 24, 2024

As a temporal hack this works for me at the moment

  setTimeout(() => {
    inputElement.dispatchEvent(new KeyboardEvent('keyup'));
  }, 200);

This is in an Electronjs app, so I'm not concerned about browser compatibility.
(I have an extra checkbox that changes the fetch, that's why I want to trigger the update)

from autocomplete.

kraaden avatar kraaden commented on May 24, 2024

In the latest version you can manually trigger updates like this:

const result = autocomplete({...});
result.fetch();

from autocomplete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.