Hi,
i want use the RichTextEditor tools, but when I insert this object in my code, I have an error.
I have this log :
And when I use this code :
I have this log :
What is the solution ?
How load a module ? and here put this code ?
Thank you
i want use the RichTextEditor tools, but when I insert this object in my code, I have an error.
Code:
var winDessin = isc.Window.create({
height : "600px",
width : "600px",
ID : "dessin",
title : ""
});
var richTextEditor = isc.RichTextArea.create({
ID:"editor",
value:"coucou ricou"
});
winDessin.addItem(richTextEditor);
Code:
TypeError: isc.RichTextArea is undefined
Code:
var winDessin = isc.Window.create({
height : "600px",
width : "600px",
ID : "dessin",
title : ""
});
var richTextEditor = isc.DynamicForm.create({
fields: [
{name: "rte", formItemType: "RichTextItem"}
]
});
winDessin.addItem(richTextEditor);
Code:
:DynamicForm:isc_DynamicForm_3:Problem initializing item: {name: "rte",
formItemType: "RichTextItem",
} - derived FormItem class is: RichTextItem. Please make sure the relevant module is loaded
How load a module ? and here put this code ?
Thank you
Comment