Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在看到我关于这个主题的问题/答案后,最后我决定提出这个问题,
请建议和帮助....
我检查了这个解决方案,但是如何使用 MVC?
使用jqgrid加载数据后是否可以修改colModel?
如果这能解决您的问题,请检查此项。这可能很慢,但它会起作用。
@foreach (System.Data.DataRow row in Model.Table.Rows) { <tr> @foreach (System.Data.DataColumn col in Model.Table.Columns) { <td> @Model.Table.Rows[row.Table.Rows.IndexOf(row)][col.ColumnName].ToString() </td> } </tr> }