tabview 和文本编辑器的集成似乎存在问题。只要用户不切换选项卡,编辑器就会显示并正常工作。当用户切换选项卡并返回到集成了文本编辑器的选项卡时,编辑器的内容会消失并变得无响应(无法在其中输入文本)。
我用以下编辑器对此进行了测试,结果不同:
- ckeditor - 值被重置,组件变得无响应
- tinymce - 值被重置,组件变得无响应
- 水银 - 值已重置,但组件有效(您可以重新输入文本)。
- nicedit - 工作!
这是示例代码定义。
webix.ui({
container: 'richtext-div',
view: "tabview",
cells:[{
header: 'Tab 1',
view: 'form',
elements: [{
view: 'ckeditor',
width: 800,
height: 500,
value: 'This is a test value for the rich text component'
}]
},{
header: 'Tab 2',
rows: [{
template: 'This is the second tab'
}]
}]
});
以前有谁解决过这个问题,请指教。肿瘤坏死因子。左撇子