
Untitled
By: a guest on
Jun 2nd, 2012 | syntax:
None | size: 1.09 KB | hits: 13 | expires: Never
How to remove auto suggest functionality on Textbox
function SetAutoSuggest(ProductType) {
if (ProductType == "PRODUCT") {
$("#PantryFooodItemName").autocomplete('<%= Url.Action("GetAutosuggestProductlistForMeal", "Autosuggest") %>',
{
minChars: 2,
width: 300,
multiple: false,
matchContains: true,
mustMatch:true,
formatItem: formatItem,
formatResult: formatResult
}
);
}
if (ProductType == "CUSTOMPRODUCT") {
$("#PantryFooodItemName").autocomplete('<%= Url.Action("GetCustomProduct", "Autosuggest") %>',
{
minChars: 2,
width: 300,
multiple: false,
matchContains: true,
mustMatch: true,
formatItem: formatItem,
formatResult: formatResult
}
);
}
}
source: function(request, response)
{}
[{"id":25,"label":"mylabel","value":"myval"},{"id":26,"label":"mylabel26","value":"myval26"}]