Hi,
The following code to do something when AutoComplete receives focus is not triggering the function specified when AutoComplete receives focus:
Can you tell me what I am doing wrong?
many Thanks,
Donald
The following code to do something when AutoComplete receives focus is not triggering the function specified when AutoComplete receives focus:
function window_onload() {
//pageLoad();
document.getElementById("imgAjax").style.display = "none";
window.focus();
$(document).ready(function() {
$("#go_autoCompleteInput").kendoAutoComplete({
separator: " ",
minLength: 3,
dataTextField: "value",
.... othere code
});
go_autoCompleteInput = $("#autoCompleteInput").data("kendoAutoComplete")
};
function _autoCompleteInput_onfocus() {
alert("'autoCompleteInput' 'onfocus' event just started executing.");
go_CheckBoxContentAreaEnabled.checked = false;
}
Can you tell me what I am doing wrong?
many Thanks,
Donald