https://github.com/dynamia-projects/aceditor-zk
Ace Editor for ZK 8
https://github.com/dynamia-projects/aceditor-zk
ace-editor java javascript zk
Last synced: 5 months ago
JSON representation
Ace Editor for ZK 8
- Host: GitHub
- URL: https://github.com/dynamia-projects/aceditor-zk
- Owner: dynamia-projects
- License: other
- Archived: true
- Created: 2018-07-21T23:46:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-13T15:29:58.000Z (over 2 years ago)
- Last Synced: 2025-08-02T19:29:25.615Z (10 months ago)
- Topics: ace-editor, java, javascript, zk
- Language: JavaScript
- Homepage: http://www.dynamia.tools
- Size: 1.66 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ACE Editor for ZK is now part of DynamiaTools Framework https://github.com/dynamiatools/framework
[](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22tools.dynamia.zk.addons%22%20a%3A%22aceditor-zk%22)
# ACE Editor for ZK
This library let you use Ace Editor (https://ace.c9.io/) in ZK application using pure Java or ZUL.
## Bulding
This is a regular maven project, download and build it using the following command:
```bash
mvn clean install
```
## Installation
Just add **aceditor-zk-xx.jar** to your project dependencies:
**Maven**
```xml
tools.dynamia.zk.addons
aceditor-zk
1.4.4
```
**Gradle**
```bash
compile "tools.dynamia.zk.addons:aceditor-zk:1.4.4"
```
## Usage
From **zul**
```xml
Aceditor ace = new Aceditor();
ace.setTheme("ambiance");
ace.setWidth("500px");
ace.setHeight("400px");
ace.setMode("html");
```
Aceditor support ZK MVVM databinding and commands
From **Java**
```java
Aceditor ace = new Aceditor();
ace.setTheme("ambiance");
ace.setWidth("500px");
ace.setHeight("400px");
ace.setMode("html");
ace.setValue("
Hello ZK
");
```
## License
Aceditor-ZK is available under the [Apache 2 License](https://github.com/dynamia-projects/chartjs-zk/blob/master/LICENSE.md).
## Want contribute?
Please read [Contributing Guidelines](https://github.com/dynamia-projects/chartjs-zk/blob/master/CONTRIBUTING.md)