我正在使用mvc $ webgrid查看器,我的网格查看器按照我想要的方式精确列出所有列但是当我通过单击列名称的超链接对网格内容进行排序时,存在一个问题,它为所有列排序除了下拉菜单或mvc viwer中的DropDownList
。
[![mvc4 webgrid view screenshoot] [1]] [1]
DropDownList is not sorted as the other column values.
答案 0 :(得分:0)
调用具有selectlist
项集的函数。例如,在我的情况下,当我按如下方式创建webgrid时,它可以工作:
grid.Column(columnName: "ContractFileNamesList", header: "ContractFileNamesList", format: @item => Html.DropDownList("filename",
, "-- Select One --"))
特别是,
(IEnumerable)Model.ContractBOModel [rowVal - 1] .FileNameListsFunction(fileNameStr);