beowulfenator/yii2-json-editor

Yii2 wrapper for jdorn/json-editor

Installs: 33 223

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 1

Forks: 2

Open Issues: 1

Type:yii2-extension

1.1.4 2017-06-28 11:21 UTC

This package is not auto-updated.

Last update: 2024-04-19 19:20:01 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,
    ],
]);