在做了一些研究之后,我似乎无法解决 Shield UI Grid 控件的问题。我希望能够允许用户按照他们选择的顺序放置列。我有类似的命令,如下面的代码:
$(function () {
$("#grid").shieldGrid({
dataSource: {
data: products
},
columns: [
"ProductName",
{ field: "['Category']['CategoryName']", title: "CategoryName", format: "{0:c}", width: "330px" },
{ field: "UnitPrice", title: "Unit Price", format: "{0:c}", width: "130px" },
{ field: "UnitsInStock", title: "Units In Stock", width: "130px" },
{ field: "Discontinued", width: "130px" }
]
});
});
在我没有找到解决方案后,我在页面上放置了一些额外的控件来显示列序列,但这并不完全符合我的要求。有没有办法动态改变网格列的位置?