dmstr / yii2-json-editor
Yii2 wrapper for "json-editor/json-editor" (is a fork of "jdorn/json-editor")
Installs: 50 153
Dependents: 5
Suggesters: 0
Security: 0
Stars: 8
Watchers: 8
Forks: 9
Open Issues: 2
Type:yii2-extension
Requires
- npm-asset/json-editor--json-editor: ^2.5.0
- yiisoft/yii2: ~2.0.0
Suggests
- 2amigos/yii2-ckeditor-widget: Recommended assets for CKEditor plugin in json-editor
- 2amigos/yii2-selectize-widget: Recommended assets for selectize plugin in json-editor
- dev-master
- 1.5.0
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.3.0-rc1
- 1.3.0-beta1
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.0
- 1.0.0
- 1.0.0-rc1
- 1.0.0-beta1
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-feature/flysystem-editor
- dev-dev/encode-translated-opts
- dev-feature/post-build-plugin
- dev-dev/filefly-editor-image-only-preview
- dev-dev/html-purifier-filter-validator
- dev-feature/disable-editor
- dev-feature/plugin-asset-option
- dev-feature/disable-init-ajax
This package is auto-updated.
Last update: 2024-10-25 10:54:43 UTC
README
Yii2 wrapper for "json-editor/json-editor" (fork of "jdorn/json-editor").
Configuration
If you want to use additional tested plugins, such as CKEditor, selectize or filefly you can include the following lines in your view
JsonEditorPluginsAsset::register($this);
See the suggest
section of composer.json
for information about recommended composer packages.
Changelog
1.3
- updated
json-editor
to^2.3.5
(affects custom editorextends
usage, see commit)
1.2
See git log
Usage
$example_schema = [ 'title' => 'Example JSON form', 'type' => 'object', 'properties' => [ 'name' => [ 'title' => 'Full Name', 'type' => 'string', 'minLength' => 5 ], 'date' => [ 'title' => 'Date', 'type' => 'string', 'format' => 'date', ], ], ];
$form->field($model, 'example_field')->widget(JsonEditorWidget::className(), [ 'schema' => $example_schema, 'clientOptions' => [ 'theme' => 'bootstrap3', 'disable_collapse' => true, 'disable_edit_json' => true, 'disable_properties' => true, 'no_additional_properties' => true, ], ]);
Plugin Bundles
This packages contains optional asset bundles for specialized plugings that can be rgistered when activated in the configuration array.
- CKEditorAsset (active per default for backward compatibility reasons)
- JoditAsset
- SceditorAsset
- SimpleMDEAsset
$form->field($model, 'example_field')->widget(JsonEditorWidget::className(), [ 'schema' => $example_schema, 'registerCKEditorAsset' => true, // CKEditorAsset will be registered (default true) 'registerJoditAsset' => true, // JoditAsset will be registered (default false) 'registerSceditorAsset' => true, // SceditorAsset will be registered (default false) 'registerSimpleMDEAsset' => true, // SimpleMDEAsset will be registered (default false) 'clientOptions' => [ 'theme' => 'bootstrap3', ] ]);