- 找到
/APPs/admin/view/default/content/contentsort.html
文件。 - 将第100行左右的代码:
$("#sortTable").treetable({ expandable: true, column: 1, indent: 20, stringCollapse: '收缩', stringExpand: '展开' });
修改为:
$("#sortTable").treetable({ expandable: true, column: 1, indent: 20, stringCollapse: '收缩', stringExpand: '展开', initialState: "expanded" });
initialState: "expanded"
参数使所有节点默认展开。initialState: "collapsed"
参数使所有节点默认折叠。

