ポップアップ編集モードの剣道グリッドがあります。ポップアップ フォームの最初のフィールドはオート コンプリート ウィジェットです。ポップアップフォームがポップアップするたびに、それにフォーカスしたいと思います。私はこれを別の方法でやろうとしました
$("#grid").kendoGrid({
editor:
function(container, options) {
$('<input id="item_code_focus" name="' + options.field + '"/>')
.appendTo(container)
.kendoAutoComplete({
-----
-----
}).focus()
}
});
しかし、それは機能していません。私を助けてください?...