Git Product home page Git Product logo

yii2-aceeditor's Introduction

Ace Editor Widget For Yii2

About

It is Ace Editor integration for Yii2 framework.

Demo

Since this package was created as a part of (Yii2 Starter Kit)yii2-starter-kit it's demo can be found in starter kit demo here (login: webmaster, password: webmaster)

Ace Editor demo can be found here

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require trntv/yii2-aceeditor

or add

"trntv/yii2-aceeditor": "^2.0.0"

to the require section of your composer.json file.

Usage

Using model

trntv\aceeditor\AceEditor::widget([
	// You can either use it for model attribute
	'model' => $my_model,
	'attribute' => 'my_field',

	// or just for input field
	'name' => 'my_input_name',

    'mode'=>'html', // programing language mode. Default "html"
    'theme'=>'github', // editor theme. Default "github"
    'readOnly'=>'true' // Read-only mode on/off = true/false. Default "false"
]);

With active field

$form->field($model, 'field')->widget(
        'trntv\aceeditor\AceEditor',
        [
            'mode'=>'html', // programing language mode. Default "html"
            'theme'=>'github', // editor theme. Default "github"
            'readOnly'=>'true' // Read-only mode on/off = true/false. Default "false"
        ]
    )

Lists of all available modes and themes see here

yii2-aceeditor's People

Contributors

evgenyvetrov avatar hamrak avatar schmunk42 avatar trntv avatar zayec77 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

yii2-aceeditor's Issues

Package ajaxorg/ace-builds not found in packagist.org

Problem 1
- trntv/yii2-aceeditor 2.1.0 requires ajaxorg/ace-builds ^1.2.8 -> no matching package found.
- trntv/yii2-aceeditor 2.1.0 requires ajaxorg/ace-builds ^1.2.8 -> no matching package found.
- Installation request for trntv/yii2-aceeditor ~2.1.0 -> satisfiable by trntv/yii2-aceeditor[2.1.0].

Does not work

After installation and configuration AceEditor nothing happens .
White field where must be editor .
Please help me understand .

Class 'trntv\aceeditor\AceEditor' not found

Hello !
Installed using composer successfully.

use trntv\aceeditor\AceEditor;

    $form->field($model, 'html')->widget(
        'trntv\aceeditor\AceEditor',
        [
            'mode'=>'html', // programing language mode. Default "html"
            'theme'=>'github' // editor theme. Default "github"
        ]
    )

flashes Class 'trntv\aceeditor\AceEditor' not found

vendor path after install vendor/trntv/yii2-aceeditor

Package ajaxorg/ace-builds not found

composer require trntv/yii2-aceeditor
Using version ^2.1 for trntv/yii2-aceeditor
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Installation request for trntv/yii2-aceeditor ^2.1 -> satisfiable by trntv/yii2-aceeditor[2.1.0].
    - trntv/yii2-aceeditor 2.1.0 requires ajaxorg/ace-builds ^1.2.8 -> no matching package found.

Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-stability setting
   see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
 - It's a private package and you forgot to add a custom repository to find it

Bad path in psr-4 autoload

Error from last update: class trntv\aceeditor\AceEditor not found.
You moved files in /src folder, but path in composer.json still old.

container options display:none

Добрый день,

Добавил виджет на страницу в простую форму. Заметил, что сам виджет изначально скрыт и это делается явно, в момент инициализации Html::addCssStyle($this->options, 'display: none');

            <?= trntv\aceeditor\AceEditor::widget([
                'name' => 'settings',
                'mode'=>'yaml', // programing language mode. Default "html"
                'theme'=>'github', // editor theme. Default "github"
            ]); ?>

Как сделать чтобы виджет отображался изначально? Подразумевается, что будет еще какой-то код, который уберет display:none после инициализации страницы?

ломается, если у виджета задан id с дефисом

Виджет ломается, если у него задан id с дефисом

            <?= trntv\aceeditor\AceEditor::widget([
                // or just for input field
                'id' => 'some-id',
                'name' => 'some-name',
                'mode'=>'yaml', // programing language mode. Default "html"
                'theme'=>'github', // editor theme. Default "github"
            ]); ?>

Причина тут. Дефисы недопустимы в именах переменных JS.

        $editor_var = 'aceeditor_' . $editor_id;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.