beowulfenator/yii2-json-editor

Yii2 wrapper for jdorn/json-editor

Maintainers

Package info

github.com/beowulfenator/yii2-json-editor

Type:yii2-extension

pkg:composer/beowulfenator/yii2-json-editor

Statistics

Installs: 34 157

Dependents: 0

Suggesters: 0

Stars: 7

Open Issues: 1

1.1.4 2017-06-28 11:21 UTC

This package is not auto-updated.

Last update: 2026-04-18 04:50:24 UTC


README

Yii2 wrapper for jdorn/json-editor.

Example

$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,
    ],
]);