I want to use HtmlEditor in a PropertyGrid , and my version of the ExtJS frame is 6.0.0.640 . But I have a problem with this ...
When I use Htmleditor for the grid property to display the conflict. However, I am changing the version of the frame to 4, not the problem.
For example, the following link and the version of the framework version to version 6.0.1.250. The first time you will not see the problem.
But, you do by sorting the columns, you will see that the problem is displayed.
Htmleditor to propertygrid
My code is:
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', } } }] });
source share