Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

thrau/wicket-ace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Wicket ACE

wicket-ace provides Wicket components for the easy use of the Ace code editor in Wicket applications.

Usage

You can use the AceEditorField as you would use a textarea in a form.

add(new AceEditorField<String>("code", new Model<>()));
<textarea wicket:id="code"></textarea>

More examples

You can run the examples by importing the wicket-ace maven project into your IDE and running the Start class.

Download

wicket-ace is hosted on maven central

<dependency>
  <groupId>org.rauschig</groupId>
  <artifactId>wicket-ace</artifactId>
  <version>${wicket-ace.version}</version>
</dependency>

Notice

wicket-ace is in alpha phase and subject to rapid development and change