Last active
November 5, 2020 10:29
-
-
Save robinvanderknaap/abb7a91535ceda1eafbb312e4f335bff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@(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