免责声明:我对 Extjs 完全陌生。
我在 ComboBox 上有一个选择侦听器。选择后,我可以设置不同的单元格值:
'select': function (combo, records, Opts) {
e.record.set('value', 'hello world'); //set text for the "value" cell
....
挑战在于我可能需要为该单元添加或删除一个类。我无法在 Sencha Docs 中找到如何选择或操作超出设置值的单元格。一种可能性是在列上使用自定义渲染器,但这不能按预期工作(除了文本/值设置正确)。想法取自:http ://snipplr.com/view/40942/
,renderer: function (value, meta, record, rowIndex, colIndex, store) {
meta.css += ' rw-no-edit';
return 'hello again';
为记录上的特定列添加和删除类的最佳方法是什么?