我想在PropertyGrid中使用HtmlEditor,我的框架版本是ExtJS 6.0.0.640。但是,我有这个问题......
当我使用Htmleditor到propertygrid时,会显示一个冲突。然而,我将框架版本更改为 4 没问题。
例如,以下链接并将框架版本更改为 6.0.1.250。第一次你会发现没有问题。
但是,您在列排序时会看到要显示的问题。
我的代码:
Ext.define('Draw.view.mainmap.MainMap',{
extend: 'Ext.panel.Panel',
xtype: 'myGrid',
layout: 'fit',
width: 400,
items: [{
title: 'property grid',
xtype: 'propertygrid',
source: {
"(name)": "My Object",
"Available" : false,
"Version" : 0.01,
"Description" : "A test Object"
},
customEditors: {
Description: {
xtype: 'htmleditor',
}
}
}]
});