문제

This link: http://www.tinymce.com/wiki.php/TinyMCE3x:%22For_Dummies%22 shows under the headline "Custom Advanced TinyMCE wysiwyg Editor" in the second window behind "theme_advanced_buttons" the names of the buttons you can add to your toolbar. It's a bit different in version 4.x but it works the following way:

$('#my_textarea').tinymce({
    plugins: 'link,code,preview,autolink',             
    height: 350,
    width: 750,
    toolbar: "undo redo | styleselect | bold italic | justifyleft justifycenter justifyright | bullist numlist | link image | preview code"
});

Except the justifyleft justifycenter justifyright buttons everything works perfect. So how to find out the right button names for these buttons?

도움이 되었습니까?

해결책

Found the answer here: http://www.tinymce.com/tryit/full.php

alignleft aligncenter alignright alignjustify

works

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top