Skip to content

Instantly share code, notes, and snippets.

@robinvanderknaap
Last active November 5, 2020 10:29
Show Gist options
  • Save robinvanderknaap/abb7a91535ceda1eafbb312e4f335bff to your computer and use it in GitHub Desktop.
Save robinvanderknaap/abb7a91535ceda1eafbb312e4f335bff to your computer and use it in GitHub Desktop.
@(Html.Grid("basic")
.SetCaption("Basic Grid")
.AddColumn(new Column("CustomerId")
.SetLabel("Id"))
.AddColumn(new Column("Name"))
.AddColumn(new Column("Company"))
.AddColumn(new Column("EmailAddress"))
.AddColumn(new Column("Last Modified"))
.AddColumn(new Column("Telephone"))
.SetUrl("/Home/GridData/")
.SetAutoWidth(true)
.SetRowNum(10)
.SetRowList(new int[]{10,15,20,50})
.SetViewRecords(true)
.SetPager("pager"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment