I'm currently evaluating the Grid control, and managed to build my grid using c# using the html helper.
My dataset has too many columns to put into one row and I trying to building a child grid using a client template to pass it the additional columns required.
My c# function contain the bones of the child grid based upon an ExpandoObject, along with a local json array that I would like to insert into the datasource, can you tell me how I am able to achieve this?
var jsonColumns = Newtonsoft.Json.JsonConvert.SerializeObject ( row );
var grid = html.Kendo ().Grid<System.Dynamic.ExpandoObject> ()
.Name ( "test" )
.ToClientTemplate();