Code Monkey home page Code Monkey logo

Comments (8)

Peter-Schmandra avatar Peter-Schmandra commented on May 20, 2024 1

Found this code in another comment and works fine for updating params before search starts.

params:{whse_zone_key:function(){ return $('#whse_zone_key').val()}},

from jquery-autocomplete.

tkirda avatar tkirda commented on May 20, 2024 1

Try this:

$('.autocomplete').autocomplete({
    // ...
    onSearchStart: function (){
        $(this).autocomplete('setOptions', { params: { test: 'Value' } });
    }
});

from jquery-autocomplete.

tkirda avatar tkirda commented on May 20, 2024

You can use onSearchStart callback and set parameters before search starts.

from jquery-autocomplete.

Peter-Schmandra avatar Peter-Schmandra commented on May 20, 2024

What is the syntax for resetting the parameters inside the onSearchStart callback? Thanks.

from jquery-autocomplete.

ManGysT avatar ManGysT commented on May 20, 2024

Thank you for your response. I'll use 'onSearchStart' callback to populate the 'params' object.

from jquery-autocomplete.

Peter-Schmandra avatar Peter-Schmandra commented on May 20, 2024

I would also prefer using the 'onSearchStart' callback but I cannot seem to get the syntax correct. Unfortunately there is no information in the documentation, examples or comments.

from jquery-autocomplete.

Peter-Schmandra avatar Peter-Schmandra commented on May 20, 2024

Arg, I was so close! Yes that works, thanks so much. Also thanks for this for this fantastic JQuery plugin tkirda.

from jquery-autocomplete.

angaziz avatar angaziz commented on May 20, 2024

I think what @tkirda say is changing the params when search is start, that's right but it will affect the parameter on The-Next time user trying to search (not on that time). Until this can be solved, maybe we can check this one :
http://stackoverflow.com/questions/10868537/ajax-autocomplete-for-jquery-how-to-send-dynamic-parameters

Hope help.

UPDATE :
If you are using two ID with one function call for two different params (like 'typeData'), maybe you can use this one :
$('#one, #two').autocomplete(option);
$('#one').autocomplete('setOptions', { params: { typeData: 'one' } });
$('#two').autocomplete('setOptions', { params: { typeData: 'two' } });

Thats it, maybe if you want set the params from Form Field you can use onchange from that field and set the option like the second or third line of the script above. @tkirda this plugin is awesome.

Have a nice day.

from jquery-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.