修改jqgrid 4.6 设置 tree 图标为文件图片
时间: 2024-03-10 12:49:57 浏览: 94
jqgrid treegrid功能的bug修改
要修改jqGrid 4.6设置tree图标为文件图片,您需要使用`treeIcons`属性并设置相应的CSS类。以下是一个示例:
```javascript
$("#treegrid").jqGrid({
url: "your_data.json",
datatype: "json",
colNames: ["ID", "Name", "Description"],
colModel: [
{ name: "id", index: "id", width: 1, hidden: true, key: true },
{ name: "name", index: "name", width: 150 },
{ name: "description", index: "description", width: 300 }
],
treeGrid: true,
treeIcons: {
"plus": "ui-icon-document",
"minus": "ui-icon-document-b",
"leaf": "ui-icon-document"
},
ExpandColumn: "name",
ExpandColClick: true,
height: "auto",
pager: false,
caption: "Tree Grid"
});
```
在上面的示例中,我们使用了`treeIcons`属性来设置图标。`ui-icon-document`是一个jQuery UI图标类,您可以根据需要更改为其他图标类。请注意,要使用jQuery UI图标,您需要正确加载jQuery UI库文件。
阅读全文