我正在使用 Lib.Web.Mvc(版本 6.1.0)在客户端生成 jqgrid。
JqGridColumnModel 的大多数属性都可以正常工作,但CellAttributes在这里没有任何作用。
这是我的代码:
configuration.Settings.ColumnsModels.AddRange(new JqGridColumnModel[]
{
new JqGridColumnModel("ProductID") { Index = "ProductID" },
new JqGridColumnModel("ProductName") { Index = "ProductName" },
new JqGridColumnModel("SupplierID") { Index = "SupplierID" },
new JqGridColumnModel("CategoryID") { Index = "CategoryID" },
new JqGridColumnModel("QuantityPerUnit") { Index = "QuantityPerUnit"},
new JqGridColumnModel("UnitPrice") { Index = "UnitPrice", CellAttributes *="value=1"} });
我不知道 CellAttributes 在 lastes 版本 6.1.0 中是否仍然不起作用?或者我不知道如何使用它。
请告诉我从服务器端(控制器)向单元添加更多属性的想法。