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.
我有一个带有校验列的网格。我希望能够更改选中该行上给定行复选框的样式。
现在我有这个:
listeners: { checkchange: function (checkcolumn, rowIndex, checked) { if (checked) { } } }
但是我不知道在条件中放什么,这会给我一个对象,它有一个方法可以让我改变风格。
覆盖getRowClass方法。当复选框更改时,该行将在 DOM 中更新,这将触发此方法。