AutoComplete Showing Blank Values

AutoComplete Showing Blank Values

daniegloydaniegloy Posts: 35Questions: 12Answers: 5

HI, I am using jquery Ui autofill to lookup values in an input field, it seems to find the entries, but only displays a blank value in the suggestion box.

     label: "MAKE:",
      name: "MAKE",
      type: "autoComplete",
      opts:




      {
      
      source: [
                   function MakeListAuto(){

                      var MakeListArray = new Array();
 
                        MakeListArray[0] = 'BMW';
                        MakeListArray[1] = 'FORD';
                        // alert(MakeListArray);
                              return MakeListArray; 
                    }
                  
              ]
        }


This question has an accepted answers - jump to answer

This discussion has been closed.