当我点击Kendo.Button()
$(".modal-content").html(result);
结果是在Ajax调用后从控制器返回我的局部视图。
数据显示正常,但是没有过滤,也不允许我在数字字段中键入内容。
当我使用Ajax.ActionLink
时,它在没有定义Ajax.ActionLink的同一视图中包含代码的情况下也可以正常工作。这样做时,我有了一个快速修复的过滤器,该过滤器在从控制器加载Partial View时起作用:
$(document).ready(function () {
$(document).off('focusin.modal');
});
现在,加载视图的逻辑与Kendo.Button()
使用$(".modal-content").html(result);
逻辑打开视图的页面{p>
有什么办法可以解决?