Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 172987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:15:47+00:00 2026-05-11T13:15:47+00:00

Am a bit confused here, what does the formatResult and formatItem do in the

  • 0

Am a bit confused here, what does the formatResult and formatItem do in the JQuery Autocomplete plugin?

I have a function that is returning a comma separated string (from Django), but my autocomplete function is unable to split the string into individual entries/rows, how can i achieve this using autocomplete functions?

e.g the returned result looks like this and this what autocomplete is showing :- [‘one’,’oneTwo’, ‘Onethree’, ‘anotherOne’]

I want when showing in the autocomplete field to have it split like this:-

one oneTwo Onethree anotherOne 

I have a feeling i can use the formatResult and formatItem but i dont know how, there are no good examples out there !!

my code in the html template:

 function autoFill(){            $('#tags').autocomplete('/taglookup/', {         width: 320,         max: 4,         highlight: false,         multiple: true,         multipleSeparator: ' ',         scroll: true,         scrollHeight: 300          });        } 

Am using Dajango to process the GET request.

Gath

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:15:48+00:00Added an answer on May 11, 2026 at 1:15 pm

    formatItem formats an item for display in the dropdown list, while formatResult formats the item for display in the inputbox once it is selected.

    By default, autocomplete expects to get data from the specified url formatted as:

    foo|bar|baz|bing zaz|ding|blop|grok 

    where each line is a row of data; each row being the data that it passes to formatItem and formatResult. You may want to take the path of least resistance and return data in the way it likes.

    If you want to use data that doesn’t fit autocomplete’s assumptions, you’ll need to use the (undocumented, as far as I can tell) parse option to identify a function to parse the results of your ajax request. It appears to me that your django view is returning an array rather than returning a formatted string. To format your array as jquery would like it:

    return HttpResponse('|'.join(your_array), mimetype='text/plain') 

    Here is an example of doing autocomplete using non-standard autocomplete data (JSON):

    <script type='text/javascript'>    format_item = function (item, position, length){      return item.title;    }    // Handle data from ajax request   prep_data = function(data){     tmp = $.evalJSON(data);     parsed_data = [];     for (i=0; i < tmp.length; i++) {       obj = tmp[i];       // Other internal autocomplete operations expect       // the data to be split into associative arrays of this sort       parsed_data[i] = {          data: obj ,          value: obj.isbn13,          result: obj.title       };     }     return parsed_data   }    $(document).ready(function(){     $('#fop').autocomplete({            url : '{% url book-search %}',            // undocumented            parse: prep_data,            formatItem: format_item,            });   })   </script> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm a bit confused here. Microsoft as far as I can tell claims that
alt text http://img693.imageshack.us/img693/724/markov.png I'm a bit confused about some points here: What does it
I'm a bit confused by the documentation here. I have a transaction, which start
You guys were very helpful yesterday. I am still a bit confused here though.
I'm a bit confused that the argument to crypto functions is a string. Should
any bit of info will be helpful here. or does anybody else huge do
I'm a bit confused on setting up the boost test library. Here is my
I am a bit confused about socket programming in C. You create a socket,
I am bit confused about ADO.Net Data Services. Is it just meant for creating
I am a bit confused why this code compiles. I leave out the necessary

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.