About the Medium Editor wrapper category

This addon is a Vaadin wrapper using the medium-editor javascript library, which is a inline WYSIWYG editor.

Features

  • MediumEditor component
  • MediumEditorField for simple usage in com.vaadin.data.fieldgroup.BeanFieldGroup<T> or com.vaadin.data.fieldgroup.FieldGroup
  • Configure the editor’s options with a fluent api
  • Usage of Vaadin’s FontAwesome integration, therefore unlike the js lib no addional css file must be included.
  • Localization of build in buttons becomes possible. English and German are supported yet.

Installation

Maven

<repositories>
  <repository>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
    <id>central</id>
    <name>bintray</name>
    <url>http://jcenter.bintray.com</url>
  </repository>
</repositories>

<dependency>
  <groupId>com.byteowls</groupId>
  <artifactId>vaadin-medium-editor</artifactId>
  <version>replace.with.version</version>
</dependency>

Gradle

repositories {
  jcenter()
}
dependencies {
  compile ("com.byteowls:vaadin-medium-editor:replace.with.version")
}

For more documentation on usage and installation please visit the project’s page at Github.

If you experience any problems or have a feature request please use the issue tracker at Github