telerik ASP.net MVC Grid Ajax 绑定问题

发布于 2024-11-07 09:06:37 字数 1192 浏览 0 评论 0原文

我将代码与 Telerik 示例 进行了比较,除了模型之外,一切都相同。但我在Grid中看不到记录。

// Controller
  public  ActionResult Index()
    {
           return View();
    } 
    [GridAction]
    public ActionResult _Index()
    {
        return View(new GridModel<AuctionViewModel>
                    {
                     Data = GetData()
                    }
                   );
    }

// 如果我将 'Index' 操作代码替换为 '_Index' ,服务器绑定工作正常并显示记录,但是当我尝试运行 AjaxBinding 时,它不起作用(从不运行 _Index 代码)

// View

    @model List<TestMVC3_Telerik.Models.AuctionViewModel>
    @{      
    Html.Telerik().Grid((List<TestMVC3_Telerik.Models.AuctionViewModel>)ViewData["MyAuctions"])
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(o => o.AuctionID).Title("ID").Width(100);
        columns.Bound(o => o.AuctionName).Title("Name");
    })
      .DataBinding(dataBinding => dataBinding.Ajax().Select("_Index", "Grid"))
    .Pageable(paging => paging.PageSize(5))
    .Sortable()
    .Scrollable()
    .Groupable()
    .Filterable();
        }

I compared the codes with Telerik sample , everything is the same except the model. But I can't see the records in Grid.

// Controller
  public  ActionResult Index()
    {
           return View();
    } 
    [GridAction]
    public ActionResult _Index()
    {
        return View(new GridModel<AuctionViewModel>
                    {
                     Data = GetData()
                    }
                   );
    }

// If I replace 'Index' Action codes with '_Index' , the server binding works fine and shows the records but when I try to run AjaxBinding , It doesn't works (never runs _Index codes)

// View

    @model List<TestMVC3_Telerik.Models.AuctionViewModel>
    @{      
    Html.Telerik().Grid((List<TestMVC3_Telerik.Models.AuctionViewModel>)ViewData["MyAuctions"])
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(o => o.AuctionID).Title("ID").Width(100);
        columns.Bound(o => o.AuctionName).Title("Name");
    })
      .DataBinding(dataBinding => dataBinding.Ajax().Select("_Index", "Grid"))
    .Pageable(paging => paging.PageSize(5))
    .Sortable()
    .Scrollable()
    .Groupable()
    .Filterable();
        }

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

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

发布评论

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

评论(1

嗫嚅 2024-11-14 09:06:37

.DataBinding(dataBinding => dataBinding.Ajax().Select("_Index", "Grid"))

调用页面的内容

将“Grid”更改为您从.DataBinding(dataBinding => dataBinding.Ajax().Select (“_Index”,“Home”))

一旦我这样做了,它就为我加载了。

.DataBinding(dataBinding => dataBinding.Ajax().Select("_Index", "Grid"))

Change "Grid" to what you are calling the page from

.DataBinding(dataBinding => dataBinding.Ajax().Select("_Index", "Home"))

Once I did that it loaded for me.

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