Ckeditor自定义插件 - 带单选按钮的对话框

时间:2016-03-15 07:14:33

标签: javascript ckeditor wysiwyg ckeditor4.x

我试图在CKEditor中构建一个自定义插件,其中选择了单选按钮中的一个元素。 list更改所选元素的类。示例:

选择BIG会添加课程bigMEDIUM => medSMALL => sml

我在必须检索所选元素值的部分被阻止了。 Evey的其他内容很顺利,我在下面的代码中设法应用了一个课程" MYCLASS"到最近的li标记。

问题:如何在CKeditor的dialog元素中获取所选单选按钮的值?

以下是代码:

CKEDITOR.dialog.add( 'MyDialog', function ( editor ) {
    function getListElement( editor, listTag ) {
      var range;
      try {
        range = editor.getSelection().getRanges()[ 0 ];
      } catch ( e ) {
        return null;
      }

      range.shrink( CKEDITOR.SHRINK_TEXT );
      return editor.elementPath( range.getCommonAncestor() ).contains( listTag, 1 );
    }

    return {
      title: 'Size of the element',
      minWidth: 400,
      minHeight: 200,
      contents: [
           {
               id: 'tab-basic',
               label: 'Size of an element',
               elements: [
                {
                  type: 'radio',
                  id: 'bullet-size',
                  label: 'Size of the bullets',
                  items: [ [ 'BIG', 'big' ], [ 'MEDIUM', 'mdm' ],[ 'SMALL', 'sml' ] ],
                  style: 'color: green',
                  'default': 'big',
                },
               ]
           },
       ],
       onOk: function() {

         var editor = this.getParentEditor(),
             element = getListElement( editor, 'ul' ),
             dialog = this,
             config = editor.config, 
             lang = editor.lang,
             style = new CKEDITOR.style(config.coreStyles_alpha);

         editor.attachStyleStateChange(style, function(state) {
           !editor.readOnly;
         });
         count = element.getChildren().count();
         for(k=1; k <= count; k++){
           element.getChild(k-1).setAttribute('class', 'MyClass');
         }
     }
    }
});

1 个答案:

答案 0 :(得分:1)

这是获得价值的方法。在onOk函数内:

var my_variable = this.getVazlueOf(Id_of_you_tab, id_of_the_radio_list);