Telerik MVC Grid 的焦点编辑表单弹出窗口

发布于 2024-10-15 04:21:43 字数 59 浏览 1 评论 0原文

如何聚焦 Telerik MVC 网格的编辑表单弹出窗口?首选不会破解 Telerik 代码的解决方案。

How can you focus the edit-form Popup for Telerik MVC grid? Solutions that not hack Telerik code are preferred.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夕嗳→ 2024-10-22 04:21:43

您可以使用 OnEdit 事件,从表单中找到某个输入元素并将其聚焦。这是一些示例代码:

<script type="text/javascript">
function Grid_onEdit(e) {
    var form = e.form;
    $(form).find("input:first").focus();
}
</script>

You can use the OnEdit event of the grid, find some input element from the form and focus it. Here is some sample code:

<script type="text/javascript">
function Grid_onEdit(e) {
    var form = e.form;
    $(form).find("input:first").focus();
}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文