lav45/yii2-aceeditor
Composer 安装命令:
composer require lav45/yii2-aceeditor
包简介
Yii2 ajax.org Ace Editor widget
README 文档
README
This extension allows you to install and use the code editor Ace
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist lav45/yii2-aceeditor "1.2.*"
or add
"lav45/yii2-aceeditor": "1.2.*"
Usage
How to call?
use lav45\aceEditor\AceEditorWidget; echo $form->field($model, 'content')->widget(AceEditorWidget::className(), [ 'theme' => 'xcode', 'mode' => 'html', 'showPrintMargin' => false, 'fontSize' => 14, 'height' => 300, 'options' => [ 'style' => 'border: 1px solid #ccc; border-radius: 4px;' ] ]); // Ace editor without model echo AceEditorWidget::widget([ 'name' => 'description', 'value' => 'same text', ]);
统计信息
- 总下载量: 17.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2014-09-10