Telerik Grid 的客户端 ActionLink

发布于 2024-11-15 09:08:46 字数 799 浏览 5 评论 0原文

我想要实现的是从现有代码中获取 jquery 模态弹出窗口 - 通过 telerik 网格中的 ActionLink,但我缺少语法,如果有人可以帮忙,请

这个 actionlink 完美地显示模态。

<%: Html.ActionLink("Edit", "DemoEdit", new { xid = item.Userid }, new { @class = "abookModal", title = "Edit Person" })%>

所以我将其嵌入到 Telerik 网格中,就像在客户端一样。

.Columns(columns =>
{
    columns.Bound(e => e.Userid);
    columns.Bound(e => e.Name);
    columns.Bound(e => e.Email);
    columns.Bound(e => e.Userid)
      .ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}).ToString(), new { @class = "abookModal", title="Edit Person"});

最后一部分从 new { @class = "abookModal", title="Edit Person"} 不会被采纳,因为“方法‘ClientTemplate’没有重载需要 2 个参数。

对此有什么解决方案吗?

What am trying to achieve is to get a jquery modal popup from the existing code - through ActionLink in telerik grid, but am missing the syntax, if someone could help out please

this actionlink works perfectly bringing out the Modal.

<%: Html.ActionLink("Edit", "DemoEdit", new { xid = item.Userid }, new { @class = "abookModal", title = "Edit Person" })%>

and so I embedded this into telerik grid, as in client side.

.Columns(columns =>
{
    columns.Bound(e => e.Userid);
    columns.Bound(e => e.Name);
    columns.Bound(e => e.Email);
    columns.Bound(e => e.Userid)
      .ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}).ToString(), new { @class = "abookModal", title="Edit Person"});

the very last part starting from
new { @class = "abookModal", title="Edit Person"} wouldn't be taken in because "No overload for method 'ClientTemplate' take 2 arguments.

Any solution to this?

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

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

发布评论

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

评论(2

难忘№最初的完美 2024-11-22 09:08:46

您可以使用锚标记而不是 html.actionlink

.ClientTemplate("<a href='"+Url.Action("DemoEdit","controllername",new {xid = "<#=Userid #>"})+ "' class='abookModal'>Edit</a>")`

You may use anchor tag instead of html.actionlink

.ClientTemplate("<a href='"+Url.Action("DemoEdit","controllername",new {xid = "<#=Userid #>"})+ "' class='abookModal'>Edit</a>")`
你曾走过我的故事 2024-11-22 09:08:46

我认为您的 ClientTemplate 上的括号可能应该是关闭

.ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}).ToString(), new { @class = "abookModal", title="Edit Person"});

.ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}, new { @class = "abookModal", title="Edit Person"}).ToString());

I think the parentheses on your ClientTemplate might be off

.ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}).ToString(), new { @class = "abookModal", title="Edit Person"});

should be

.ClientTemplate(Html.ActionLink("Edit", "DemoEdit", new {xid = "<#= Userid #>"}, new { @class = "abookModal", title="Edit Person"}).ToString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文