Добавить параметры в directEvents

В связи с этим у меня есть таблица сетки ext.net MVC. Мне нужно использовать acion по клику.

   .Width(70)
                .Commands(
                         Html.X().GridCommand()
                            .CommandName("Edit")
                            .Icon(Icon.NoteEdit)
                                .ToolTip(t =>
                                {
                                    t.Text = "Modifica della ripartizione ferie per giorno";
                                })
                            )
                            .ID("ID")
                        .DirectEvents(
                                directEvents =>
                                {
                                         directEvents.Command.Action = "Details";                            
                                })
                )

Действие в контроллере:

 // GET: Bob/Details/5
        public ActionResult Details(int id)
        {
            if (id == null)
            {
                return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
            }
            BobRepository bobRepository = new BobRepository();
            Bob bob = bobRepository.GetBob(id);
            return View(bob);
        }

Как я могу передать.ID("ID") в действии?

0 ответов

Другие вопросы по тегам