AutoComplete usage: code cleanup

SVN:trunk[935]
This commit is contained in:
Denis Flaven
2010-11-02 10:16:24 +00:00
parent 72dbb9cb8f
commit e5f0460703
2 changed files with 1 additions and 19 deletions

View File

@@ -359,24 +359,6 @@ EOF
// }
// }
// For automplete
function findValue(li) {
if( li == null ) return alert("No match!");
// if coming from an AJAX call, let's use the CityId as the value
if( !!li.extra ) var sValue = li.extra[0];
// otherwise, let's just display the value in the text box
else var sValue = li.selectValue;
//alert(\"The value you selected was: \" + sValue);
}
function selectItem(li) {
findValue(li);
}
function formatItem(row) {
return row[0];
}