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.
对于剑道网格,当我单击列标题进行排序时,它会清除先前选择的记录的选择。有没有一个选项可以让我在不清除选择的情况下选择排序。因为如果记录所选行并在对大量数据进行排序后重新选择它,则需要一些时间处理。
谢谢你
清除选择是预期的行为,因为选择不在数据模型中,而只是一个样式属性(CSS 类)。
通常,这是通过将信息存储在内存中(将所选项目保存在模型中或添加数组中)或 cookie 中来解决的。这篇代码库文章涵盖了它。