Grid - Master / Detail (Client mode)


About this example


This demo show how to use the DJME Grid ajax Master / Detail feature. The Detail View only loaded when you expand it.

<% 
    Ajax.Dna().Grid()
       .ClientBind(Url.Action("GetOrders", "Grid"))
       .ClientDetailView(remoteView=>{
           remoteView.Url(Url.Action("OrderDetail","Grid"))
                             .AddRouteValue(m => m.OrderID,"id");
       })
       ...
       .Render(); 
%>