近期,有需求想实现这样一个效果
第一反应是 textarea 但是这个组件是不支持变色和图标功能的,它是个纯文本
EXT6中有个DataView组件非常合适,效果如下
var team = Ext.create({xtype: 'dataview',fullscreen: true,store: {fields: ['name', 'age'],data: [{name: 'Peter', age: 26 ,color:'style="color:red"' },{name: 'Ray', age: 21 , color:'style="color:green"' },{name: 'Egon', age: 24 ,color:'style="color:yellow"' },{name: 'Winston', age: 24}]},itemTpl: '<div {color}>{name} is {age} years old</div>'});team.getStore().add({name: 'Gozer',age: 21,color:'style="color:blue"'});team.getStore().getAt(0).set('age', 42);