我正在使用带有Telerik的“客户端选择”(http://demos.telerik.com/aspnet-mvc-beta/grid/selectionclientside)的网格,并且我的页面加载了已标记的其中一行。我想知道如何在页面加载时激活事件OnRowSelected(在标记的行上)。
谢谢大家!
答案 0 :(得分:0)
使用代码查看“Controller(example)”选项卡。在ActionResult _SelectionClientSide_Orders(string customerID)
方法中,您会看到显示customerID = customerID ?? "ALFKI";
的行。这基本上是if customerID is null, set it to "ALFKI"
语句。基于此,选择初始行。所以这实际上是在服务器端而不是客户端完成的。
答案 1 :(得分:0)
您可以查看this论坛帖子。