OK, so I've been banging my head on this for a few days and I thought I was going in the right direction but maybe now. So the problem I have is that browsers are auto-filling the filter box of the Kendo Grid with random information based on the user. A lot of time it's an e-mail for some random reason.
So you can find threads about setting autocomplete="off" or AutoCompleteType="Disabled" for kendo objects. So I tried this:
{
field:
"ToFromOrganizer"
,
title:
"From/To/Organizer"
,
filterable: {
cell: {
template:
function
(args) {
args.element.kendoMaskedTextBox({
value:
""
,
AutoCompleteType:
"Disabled"
});
},
operator:
"contains"
,
suggestionOperator:
"contains"
}
}
},
In an attempt to prevent the browser from filling in the field, but that doesn't work. Anyone have an suggestions.