我正在创建一个自定义看板,我希望在其中允许用户在富文本编辑器中编辑故事或缺陷的描述。我找不到可以使用的富文本编辑器的任何文档,但是查看 /slm/ar/edit 页面的源代码后,我发现了以下代码片段。
Rally.alm.LegacyBootstrapper.onReady(function(){
var editor = new RALLY.ui.richtext.EditorBuilder().
withValue('This is a description of a story').
build('description',
'userStory',
'#########');
editor.render('descriptionEditorContainer');
});
我想使用编辑器构建器,但我不知道如何引用它。