Hello I have being looking for examples on using auto complete using tag helpers but coulnt find any
in my grid column i have
<column field="TechnicianAssigned" width="250" editor="categoryDropDownEditor" />
and the categoryDropDownEditor has code as below....the code hits the url but not sure how to pass the data from column to method and serach the functionality.Any example would be helpful.
function categoryDropDownEditor(data) {
$('<input data-bind="value: value" name="' + data.field + '"/>')
.kendoAutoComplete({
dataSource: {
transport: {
read: {
url: "/Home/EmpSearchData",
dataType: "jsonp"
}
}
},
dataTextField: "ename",
filter: "contains",
minLength: 4
});
}