如何在mvc kendoui网格中调用控制器
这是代码:
但没有工作:
.ClientTemplate(string.Format("<a class=\"modal\" rel=\"/address/#= Id #/map\" close=\"{0}\" title=\"{1}\"><img src=\"/content/images/ico_edit_16.png\" /></a>",
T("Common.Close").Text,
T("Address.MapAddress").Text)
这是控制器:
public ActionResult AddressMap( int accountId)
{
//load default accounts
var listModel = new AddressListModel();
//{
// AccountId = accountId,
// GridPageSize = _commonSettings.GridPageSize,
//};
//listModel.Addresses = new List<AddressModel>();
return View(listModel);
}
答案 0 :(得分:0)
使用现有代码:
.ClientTemplate(string.Format("<a class=\"modal\" rel=\"/address/#= Id #/map\"
close=\"{0}\" title=\"{1}\"><img src=\"/content/images/ico_edit_16.png\" /></a>",
T("Common.Close").Text,
T("Address.MapAddress").Text)
您将看到设置a
标记的rel设置而不是href
属性。
所以你需要做的就是更改标签,使其更像是这样:
(string.Format("<a class='k-link' href='{2}' close='{0}' title='{1}'><img src='/content/images/ico_edit_16.png' />#=Id#</a>",
T("Common.Close").Text,
T("Address.MapAddress").Text, @Url.Action("AddressMap", "{Your Controller}", new {accountId= "#=Id#"})))
我所做的就是将url传递给字符串格式化程序,然后将accountId
绑定到从dataItem传递到该行的Id。
我还在链接中添加了ID,以便您可以看到正在呈现的内容。
如果这不是您想要的,请告诉我您的实际需要,我会相应地修改答案