my grid in asp.net mvc this loading hidden

my grid in asp.net mvc this loading hidden:

@using SyncfusionMVCApplication1.Models
@model IEnumerable<SyncfusionMVCApplication1.Models.User>
      



<div style="width:100%; " >

       
    @(Html.Syncfusion().Grid<User>("user")
         
          .Datasource(Model)
          .Caption("User")
          .AutoFormat(Skins.VS2010)
          .Column( column=>
                       {
                           column.Add(p => p.Id);
                           column.Add(p => p.Name);
                           column.Add(p => p.Password);
                           column.Add(p => p.Username);

                       })
          .EnablePaging()
          .EnableSorting()
                  
                  
          )

</div>

do not know why ?



1 Reply

ES Eswari S Syncfusion Team November 2, 2012 10:36 AM UTC

Hi Brayan,

 

Thank you for using Syncfusion products.

 

We have prepared the sample for your requirement with flat grid and the same can be downloaded from the following link:

 

http://www.syncfusion.com/downloads/Support/DirectTrac/99982/Sample888643052.zip

 

We request you to check the following online UG link to resolve the grid invisibility issue:

 

http://help.syncfusion.com/UG/User%20Interface/ASP.NET%20MVC/Grid/default.htm#!documents/614howtoavoidgridinv.htm

 

Please try this and let us know if you have any other queries.

 

Regards,

Eswari S

 


Loader.
Up arrow icon