gpt4 book ai didi

Extjs HtmlEditor - 编号列表和项目符号列表

转载 作者:行者123 更新时间:2023-12-01 09:28:01 26 4
gpt4 key购买 nike

我尝试在 http://jsfiddle.net/WEEU3/ 中使用 HTMLEditor
但是当我选择编号列表或项目符号列表进行输入时,我按 Enter 键盘。好像
enter image description here

我觉得像

1. first
2. second
3. third

当我专注于第三。我按取消编号。我觉得像
    1. first
2. second
third

但所有单词都将没有编号
如何解决这个问题。非常感谢

最佳答案

看起来 4.1.1 上的 htmleditor 存在错误。此外,您不应该使用 new 创建 ExtJS 对象。这将导致其他 ExtJS 问题。

升级到 4.2.x 将解决您的 htmleditor 问题。

您的代码应该更好地格式化。您还应该使用适当的 ExtJS 方法来获取项目,即:

Ext.create('Ext.form.Panel', {  // should be using Ext.create(), not new
title: 'HTML Editor',
width: 500,
bodyPadding: 10,
renderTo: Ext.getBody(),
items: [{
xtype: 'htmleditor',
name: 'editor',
enableColors: true,
enableAlignments: false,
enableLists: true,
enableSourceEdit: false,
anchor: '100%'
}],
dockedItems: [{
xtype: 'toolbar',
items: [{
xtype: 'button',
text: 'Get HTML',
handler: function(btn) {
// example of getting all form values
console.log(btn.up('form').getForm().getValues());

// proper example of getting by component
alert(btn.up('form').down('htmleditor').getValue());
}
}]
}]
});

关于Extjs HtmlEditor - 编号列表和项目符号列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17610024/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com