AutoComplete Showing Blank Values
AutoComplete Showing Blank Values
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.
Answers
https://www.datatables.net/forums/discussion/28990/put-an-editor-field-as-autocomplete-combobox solved