beowulfenator/yii2-json-editor

jdorn/json-editor 的 Yii2 封装

安装数: 33,426

依赖: 0

推荐者: 0

安全性: 0

星标: 7

关注者: 1

分支: 2

公开问题: 1

类型:yii2-extension

1.1.4 2017-06-28 11:21 UTC

This package is not auto-updated.

Last update: 2024-09-20 21:22:14 UTC


README

这是 jdorn/json-editor 的 Yii2 封装。

示例

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