FineUI 官方论坛
标题:
F.Grid() 列表里怎么读ICollection 子集合
[打印本页]
作者:
许书侠
时间:
2017-7-26 17:14
标题:
F.Grid() 列表里怎么读ICollection 子集合
本帖最后由 许书侠 于 2017-7-26 17:19 编辑
<div class="blockcode"><blockquote> @model IEnumerable<FineUIMvc.Models.Users>
F.Grid()
.ID("Grid1")
.BoxFlex(1)
.ShowBorder(true)
.ShowHeader(false)
.EnableCheckBoxSelect(false)
.DataIDField("ID")
.DataTextField("Name")
.AllowSorting(true)
.OnSort(Url.Action("ManageList_DoPostBack"), "Panel1")
.AllowPaging(true)
.IsDatabasePaging(true)
.OnPageIndexChanged(Url.Action("ManageList_DoPostBack"), "Panel1")
.Columns(
F.RowNumberField()
.HeaderText("序号")
.Width(43)
.HeaderTextAlign(TextAlign.Center)
.TextAlign(TextAlign.Center)
.EnablePagingNumber(true),
F.RenderFieldFor(m => m.Depts.Name)
.HeaderText("所属部门"),
复制代码
欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/)
Powered by Discuz! X3.4