修改jqgrid tree 图标为文件图片
时间: 2024-03-10 18:49:56 浏览: 166
更改文件夹图标
要修改jqGrid 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图标类,您可以根据需要更改为其他图标类。
阅读全文