Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个适用于企业行模型的网格设置。列是非常动态的,因此在对服务器进行第一次行查询之前,列定义是未知的。这一切都很好,但是当请求成功后才设置列定义时,如何设置默认排序状态?
使用列定义设置网格后,您可以在任何列上设置排序
gridOptions.columnApi.getColumn(COLUMN_NAME).setSort("asc")
尝试这个
const sort = [ { colId: "firstName", sort: "asc", }, { colId: "lastName" }, ]; this.gridApi.setSortModel(sort);