0

所以我使用 jtable 并且我需要添加一列,并且在该列中调用想要我在另一个控制器中的操作以显示新视图

用于在 jtable 中添加列

TestColumn: {
                    title: 'IrRuta',
                    display: function (data) {
var foo = '<a href="http://www.w3schools.com/">Visit W3Schools</a>';
 return foo;
}

我需要这样做,但它应该调用我的行动

[HttpGet]
      public ActionResult Index(int? id)
            {
             //todo
            }

我试过这样但没有用

var foo = '@Html.ActionLink("ruta", "Index", "Ruta") ';
var foo = '@Url.Action("Index", "Ruta")'; 
4

1 回答 1

0

我最后这样做

   IrRuta: {
                    title: 'IrRuta',
                    create: false,
                    edit: false,
                    display: function (data) {
                        return '<a href="/RutaCliente/Index?clienteId=' + data.record.ClienteId + '"><span>irRuta</span></a>';
                    } 
于 2012-08-20T13:36:52.137 回答