Categories: CSSScriptWeb Design

Minimal Autocomplete Library With Support For Remote & Local Data – Pickle Complete

Pickle Complate is a really simple autocomplete component for input field that allows to fetch data from local JavaScript array of objects or external JSON data via AJAX requests.

Table of Contents

Toggle

How to use it:

1. Load the picomplete.css for the basic styling of the dropdown suggestion list.

<link href="src/picomplete.css" rel="stylesheet" />

2. Create an input field on which you want to enable the autocomplete functionality. Make sure the form has the autocomplete function switched off.

<input id="demo" type="text" name="language" placeholder="Language" />

3. Load the picomplete.js at the end of the document.

<script src="src/picomplete.js"></script>

4. Initialize the library and define your data as follows:

const instance = new PickleComplate({
      data:[{
        value:'javascript',
        text:'JavaScript'
      },{
        value:'html5',
        text:'HTML5'
      },{
        value:'css3',
        text:'CSS3'
      },{
        value:'jquery',
        text:'jQuery'
      },{
        value:'angular',
        text:'Angular'
      },{
        value:'react',
        text:'React'
      },{
        value:'vue',
        text:'Vue'
      }],
      config: {
        type:'local',
        target: '.picomplete',
        clickCallback:(target,node)=>{
          target.value = node.value;
        }
      }
});

5. Load suggestions from a remote data source.

const instance = new PickleComplate({
      request:{
        url:'https://example.com/rest/language/',
        type:'POST', // or 'get'
        value:'name',
        text:'name'
      },
      config: {
        type:'server',
        target: '.picomplete',
        clickCallback:(target,node)=>{
          target.value = node.value;
        }
      }
});

6. More callbacks.

const instance = new PickleComplate({
      request:{
        url:'https://example.com/rest/language/',
        type:'POST', // or 'get'
        value:'name',
        text:'name'
      },
      config: {
        type:'server',
        target: '.picomplete',
        clickCallback:(target,node) => {
          target.value = node.value;
        }
      },
      reqCallback : (data) => {
        data.stitle = data.value;
        delete data.value;
        return data; //return new data to post request
      },
      changeCallback : (e,value) => {
        //element keyup callback
        //e => element
        //value => input value
     }
});

Changelog:

09/05/2022

  • bugfix

07/06/2022

  • bugfix

06/12/2020

  • added more callbacks

06/12/2020

  • JS Update

The post Minimal Autocomplete Library With Support For Remote & Local Data – Pickle Complete appeared first on CSS Script.

rssfeeds-admin

Share
Published by
rssfeeds-admin

Recent Posts

Bootstrap 5 Autocomplete Component In Vanilla JS – AvalynxAutocomplete

AvalynxAutocomplete is a lightweight Bootstrap autocomplete component that converts text inputs into searchable, keyboard-navigable dropdown…

2 hours ago

Michigan Responds to Rise in Antisemitism

LANSING, MI (WOWO) Michigan officials are calling for new legislation and increased security funding following…

2 hours ago

Michigan Responds to Rise in Antisemitism

LANSING, MI (WOWO) Michigan officials are calling for new legislation and increased security funding following…

2 hours ago

Michigan Responds to Rise in Antisemitism

LANSING, MI (WOWO) Michigan officials are calling for new legislation and increased security funding following…

2 hours ago

Michigan Responds to Rise in Antisemitism

LANSING, MI (WOWO) Michigan officials are calling for new legislation and increased security funding following…

2 hours ago

Man Gets 20-Year Max in Election Fraud Scheme

MACOMB COUNTY, MI. (WOWO) A 40-year-old man convicted in a petition signature fraud scheme tied…

2 hours ago

This website uses cookies.