物业网格中的ExtJs 6 Htmleditor

Moh*_*deh 6 javascript html-editor extjs6 extjs6-classic

我想在PropertyGrid中使用HtmlEditor,我的框架版本是ExtJS 6.0.0.640.但是,我有这个问题......

当我使用Htmleditorpropertygrid进行冲突显示时.然而,我将框架版本改为4而不是问题.

例如,以下链接和更改框架版本为6.0.1.250.你第一次看到没问题.

但是,您对列进行排序,您将看到要显示的问题.

Htmleditor到propertygrid

我的代码:

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',   
         }
      }
   }]
});
Run Code Online (Sandbox Code Playgroud)