https://github.com/forms-angular/fng-ckeditor
ckEditor plugin for forms angular
https://github.com/forms-angular/fng-ckeditor
Last synced: about 1 month ago
JSON representation
ckEditor plugin for forms angular
- Host: GitHub
- URL: https://github.com/forms-angular/fng-ckeditor
- Owner: forms-angular
- Created: 2014-06-10T17:33:28.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2026-01-06T20:27:13.000Z (about 2 months ago)
- Last Synced: 2026-01-27T06:20:07.505Z (about 1 month ago)
- Language: CSS
- Size: 2.96 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# fng-ckeditor
Documentation for getting a WYSIWYG field in forms-angular
## CKEditor Version 5
### Usage
#### For default Classic build
Add the following lines to your index.html (or equivalent) file
In your Mongoose schemas you can set up fields like this:
fieldName: {type: String, form: {type: 'textarea', add: 'ckeditor5'}}
Register the directive:
angular.module('myApp',['fng.ckeditor'])
#### For fng custom build
Add the following lines to your index.html (or equivalent) file
In your Mongoose schemas you can set up fields like this:
fieldName: {type: String, form: {type: 'textarea', add: 'ckeditor5 custom'}}
Register the directive:
angular.module('myApp',['fng.ckeditor'])
## CKEditor Version 4
### Usage
npm install github:esvit/ng-ckeditor
Add the following lines to your index.html (or equivalent) file
In your Mongoose schemas you can set up fields like this:
fieldName: {type: String, form: {type: 'textarea', add: 'ckEditor'}}