One way to do it is to place a RichTextEditor with setShowEdges(true) inside of a CanvasItem. Bear in mind, the RichTextEditor is then independent of the form, so if you want to submit it's value with the rest of the form, immediately before submit grab it's value and call form.setValue() with it. The form will then save this (extra) value just like the value of a normal item.
Comment