我在Telerik的「客戶端選擇」(http://demos.telerik.com/aspnet-mvc-beta/grid/selectionclientside)中使用了網格,並且我的頁面加載了一個已經標記的行。我想知道當頁面加載時它如何激活OnRowSelected事件(在標記行上)。Telerik的網格上的事件OnLoad(客戶端選擇)
謝謝大家!
我在Telerik的「客戶端選擇」(http://demos.telerik.com/aspnet-mvc-beta/grid/selectionclientside)中使用了網格,並且我的頁面加載了一個已經標記的行。我想知道當頁面加載時它如何激活OnRowSelected事件(在標記行上)。Telerik的網格上的事件OnLoad(客戶端選擇)
謝謝大家!
您可以檢查this論壇主題。
請看代碼中的「Controller(example)」選項卡。在ActionResult _SelectionClientSide_Orders(string customerID)
方法中,您會看到一條表示customerID = customerID ?? "ALFKI";
的行。這實質上是一條if customerID is null, set it to "ALFKI"
聲明。基於此,選擇了最初的行。所以這實際上是在服務器端而不是客戶端完成的。
謝謝!我會檢查它。 – Kira 2010-04-07 17:08:17