Помогите с TinyMCE

Статус
В этой теме нельзя размещать новые ответы.
F

finogeev

Прохожие
Может кто использует TinyMCE.
У меня тут небольшая сложность ....
если на странице несколько полей textarea, он их все подсебя делает (под редактор), а мне неоьбходимо только одно поле.

Перелопатил весь мануал, но не нашел ....
Есть только для "Advanced" можно указать ID`шку ... во всех остальных не помогает ....
 
Насколько я помню, если хочешь напустить TinyMCE на textarea еиу (textarea) надо добавить аттрибут
Код:
mce_editable="true"
Если редактор не нужен - убери этот аттрибут.
 
Наверно я не правильно написал ...
У меня в форме допустим два textarea, и в одном должен быт редактор а в другом нет ....

А он все их делает редакторами
 
  • Заблокирован
  • #4
добавь где-нить внвчале параметр elements: "ta1"; и, по идее, обработчик должен сработать только для textarea с атрибутом name="ta1"..

кстати в elements можно указать несколько разных name атрибутов через запятую..
 
  • Заблокирован
  • #6
ну хорошо..
а кто мешает использовать
heme : "advanced"
mode : "exact"
и переопределить набор кнопок/модулей по-своему?..

к тому же, как я понял, для указания конкретных textarea требуется только
mode : "exact",
elements : "elm1,elm2"
 
Option: textarea_trigger
This option enables you to specify the name of the attribute to check if it's value is true/false. If the mode option is set to "specific_textareas", only specific textareas with a attribute by the name of the value of this option gets converted and only if it's set to true. This option defaults to "mce_editable".

If the mode is set to textareas and the textarea trigger attribute value is set to false, these textareas will not be converted.

Notice: This option is deprecated. We strongly recommend you to use the editor_selector/editor_deselector options instead since they validate with W3C specifications.

Example of usage of the textarea_trigger option:
tinyMCE.init({
...
textarea_trigger : "convert_this"
});

Option: editor_selector
This option enables you to specify a CSS class name that will be required on the text areas that is to be converted. This enables you to select specific text areas for convertion by adding this CSS class name to the class attribute of the text area. If this option isn't set to a value this option will not have any effect and the mode option will choose textareas instead. If you want all editors to be converted and just specific editors to be excluded check the editor_deselector option. This option also enables you to use regual expressions like myNoEditor|orMyNoOtherEditor or .*noeditor.

Example of usage of the editor_selector option:
tinyMCE.init({
...
editor_selector : "mceEditor"
});
Example of usage in the HTML:
<textarea id="myarea1" class="mceEditor">This will be a editor.</textarea>

<textarea id="myarea2">This will NOT be a editor.</textarea>

This option enables you to specify a CSS class name that will be deselect textareas from being converted into editor instances. If this option isn't set to a value this option will not have any effect and the mode option will choose textareas instead. The default value of this option is "mceNoEditor" so if mceNoEditor is added to the class attribute of a textarea it will be excluded for convertion. This option also enables you to use regual expressions like myEditor|orMyOtherEditor or .*editor.

Example of usage of the editor_deselector option:
tinyMCE.init({
...
editor_deselector : "mceNoEditor"
});
Example of usage in the HTML:
<textarea id="myarea1" class="mceNoEditor">This will be a NOT be a editor.</textarea>

<textarea id="myarea2">This will be a editor.</textarea>

должно помочь ;)
 
Да благодарен всем ... помогло ...
И последний вопросик по TinyMCE и закрываем тему !!!

У меня есть два поагина к ним image и filemanager ...
Я их прикрутить как написано в инструкции не смог, и ковырялся в коде и вообщем то сам переделал формы и вызов этих плагином (сам понимаю что неправильно, хотя все и работает, но выглядит ужасно и вылетают парой ошибки при рисайзинге ...) ...

Может кто скажет как правильно надо прикручивать данные плагины ...
 
А почему именно TinyMCE? Полно ж редакторов получше. Например FCKEditor - там и менеджер файлов и вставка картинок встроена, да и еще много вкусностей по сравннию с TinyMCE. Прикручивается легко.
 
Щас попробую поюзать ....
Как то пару лет назад с ним встречался, и что тоине понравилось просто ...

Он free ???

Добавлено через 1 минуту
А он в ОПЕРЕ не берется вот в чем проблема была

Добавлено через 16 минут
Во точно все вспомнил что и почему его не использовал !!!
Сейчас скачал и глянул его !!!

У меня не работал его filemanager и сейчас тоже самое, ругается на лицензию GNU. Тогда было некоглда разбираться вот я и взял TinyMCE.

Кто подскажет как победить в FCKEditor эту ошибку ?
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху