How to use html.grid control in spark view for asp.net mvc?
        Posted  
        
            by Anusha
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Anusha
        
        
        
        Published on 2010-05-27T13:07:12Z
        Indexed on 
            2010/05/31
            20:13 UTC
        
        
        Read the original article
        Hit count: 338
        
spark-view-engine
class person()
{
   public int Id{get;set;}
   public string Name{get;set;}
}
HomeController.cs
ActionResult Index()
{
   IList list=new[]{   
            new person { Id = 1, Name = "Name1" }, 
            new person { Id = 2, Name = "Name2" }, 
            new person { Id = 3, Name = "Name3" } 
            };
   ViewData["mygrid"]=list;
   return view();
}
Home\Index.spark
!{Html.Grid[[person]]("mygrid",
      (column=>{
      column.For(c=>c.Id);
      column.For(c=>c.Name);
  }))
Am getting the error
Dynamic view compilation failed..error CS1501: No overload for method 'Grid' takes '2' arguments.
I have added reference to MvcContrib.dll And added following namespace in the _global.spark file
<use namespace="MvcContrib.UI"/>
<use namespace="MvcContrib.UI.Grid"/>
<use namespace="MvcContrib.UI.Pager"/>
<use namespace="MvcContrib.UI.Grid.ActionSyntax"/>
<use namespace="Microsoft.Web.Mvc.Controls"/>
I want to bind the data to my grid in spark view.Can anybody help.
© Stack Overflow or respective owner