我想在我的 iggrid 中添加一列,用于显示我的 sqlserver 数据库中的当前用户。正如通常所做的那样,该行将显示为 [ 'username' 'email' 'select' ] 使用 select 链接到另一个显示用户详细信息的 mvc3 视图。我可以很容易地使用表格来做到这一点,但是,我的上级只允许我使用 Infragistics Jquery IGGrid。尽管我进行了研究,但我还是不知所措。任何帮助将不胜感激。我当前的代码如下:
@(Html.Infragistics().Loader()
.ScriptPath(Url.Content("../../Scripts/Infragistics/js/"))
.CssPath(Url.Content("../../Content/Infragistics/css/"))
.Theme("infragistics")
.Render()
)
@(Html.Infragistics().Grid(Model.users)
//.DataSourceUrl("MCMonthlyAcctTotal")
.ID("grid").Width("auto").Height("500px")
.LoadOnDemand(false)
.AutoGenerateColumns(false)
.Columns(column =>
{
column.For(x => x.FirstName).HeaderText("First Name");
column.For(x => x.LastName).HeaderText("Last Name");
column.For(x => x.Email).HeaderText("Email");
column.For(x => x.Injected).HeaderText("Date Created");
column.For(x => x.UserName).HeaderText("Username");
column.For(x => x.Modified).HeaderText("Last Date Modified");
})
.Features(features =>
{
features.Paging().Type(OpType.Local).VisiblePageCount(5).ShowPageSizeDropDown(true).PageSize(10).PrevPageLabelText("Previous").NextPageLabelText("Next");
features.Sorting().Mode(SortingMode.Single).ColumnSettings(settings =>
{
settings.ColumnSetting().ColumnKey("CustomerID").AllowSorting(true);
});
features.Selection().MouseDragSelect(true).MultipleSelection(false).Mode(SelectionMode.Row);
})
.Width("auto")
.DataBind()
.Render()
)
我希望有人能帮我一把。
谢谢!!