You can create Rich Text Editor as a Webix view or as a standalone Jet app. Both ways will lead to the same result.
webix.ready(function() {
webix.ui({
view: "editor",
value: "Hello World",
upload: "https://docs.webix.com/richtext-backend/images"
});
});
Related sample: Rich Text Editor: Basic Configuration
webix.ready(function() {
const app = new editor.App({
value: "Hello World",
upload: "https://docs.webix.com/richtext-backend/images"
});
app.render(document.body);
});
Related sample: Rich Text Editor: Init as App
Back to top