Telerik MVC Grid - 启用客户端编辑

发布于 2024-10-13 14:20:20 字数 559 浏览 8 评论 0原文

我知道这是一个相当具体的问题 - 但我无法在 Telerik MVC 网格文档

我想知道是否有人知道通过客户端事件触发网格进入“编辑模式”的方法。我在使用工具栏时遇到了问题,并认为这可以通过 jQuery / JavaScript 实现。

        $('#addName').click(function () {

            var grid = $("#NamesGrid").data("tGrid");

            //Enable Editing here?

            return grid;

        });

我正在使用服务器端绑定 - 因此,如果我必须执行 .post 或类似的操作,那么点击控制器操作并不是真正的问题。

谢谢

I know this is a rather specific question - but I wasn't able to find any help in the Telerik MVC Grid documentation.

I was wondering if anyone was aware of a way to trigger a grid into "edit mode" via a client-side event. I was having issues with the toolbar and thought this might be possible through jQuery / JavaScript.

        $('#addName').click(function () {

            var grid = $("#NamesGrid").data("tGrid");

            //Enable Editing here?

            return grid;

        });

I am using server-side binding - so hitting a Controller action wouldn't really be an issue, if I had to do a .post or something like that.

Thanks

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

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

发布评论

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

评论(1

看海 2024-10-20 14:20:20

经过一些源代码探索之后 - 您可以通过添加以下内容来完成此操作:

 $('#addName').click(function () 
 {
      window.location = "[ControllerAction]?[NamesGrid]-mode=insert";
 });

显然,这个示例是针对弹出窗口内的网格 - 但希望这可以帮助其他遇到类似问题的人。

After a bit of exploring through source - you can accomplish this by adding the following:

 $('#addName').click(function () 
 {
      window.location = "[ControllerAction]?[NamesGrid]-mode=insert";
 });

Obviously this example was for a grid inside of a popup window - but hopefully this could help others if they ran into similar issues.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文