弹出窗口中的Tinymce插入/编辑图像字段在vuetify对话框中不可编辑(集中)

时间:2019-04-21 07:56:13

标签: javascript vue.js vuetify.js tinymce-4

我知道在引导程序模式下启用焦点时可能需要进行的微调。 但是目前我正在使用vuetify对话框。哪个似乎没有关注tinymce的弹出字段。 The focus is in the pop behind the tinymce dialog

我已经解决了这个问题,但无法在上下文中进行验证 TinyMCE 4 links plugin modal in not editable

下面是我的代码,我删除了一些仅用于清理的方法,并保留了在装入的事件和编辑器init中尝试过的基本操作。

  <no-ssr placeholder="Loading Editor..">
    <tinymce
      id="content"
      :toolbar2="toolbar2"
      :toolbar1="type=='BASIC'?'':toolbar1"
      :plugins="plugins"
      :other_options="other_options"
      v-model="content"
      @input="handleInput"
      v-on:editorInit="initCallBack"
    />
  </no-ssr>
</template>

<script>
//https://dyonir.github.io/vue-tinymce-editor/?en_US
export default {
  props: {
    value: { type: String },
    type: { type: String }
  },
  data() {
    return {
      content: this.value,
      plugins: this.getPlugins(),
      toolbar2: "",
      toolbar1: this.getToolbar1(),
      other_options: {
        menubar: this.getMenubar(),
        height: "320",
        file_browser_callback: this.browseFile,
        auto_focus: '#content'
      }
    };
  },
  mounted(event) {
    // window.tinyMCE.activeEditor.focus();
    // window.tinymce.editors["content"]
    console.log(this.$el, event);
    let list=document.getElementsByClassName("mce-textbox");
    for (let index = 0; index < list.length; ++index) {
    list[index].setAttribute("tabindex", "-1");
}
    //     if ((event.target).closest(".mce-window").length) {
    //     e.stopImmediatePropagation();
    // }
    // this.$refs.refToElement ..$el.focus())
    // this.el.addEventListener('focusin', e => e.stopPropagation());
  },
  methods: {
    handleInput(e) {
      this.$emit("input", this.content);
    },
    initCallBack(e) {
      window.tinymce.editors["content"].setContent(this.value);
      window.tinymce.editors["content"].getBody().focus();
// console.log(this.$refs);
//       const focusable = this.$refs.content.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')
//         focusable.length && focusable[0].focus()

      document.getElementById("content").addEventListener("onfocusin", console.log("fucssed"));
      // tinymce.activeEditor.fire("focus");

this.$el.querySelector(".mce-tinymce").addEventListener('focusin', e =>{ e.stopImmediatePropagation();console.log('event',e)});

      const element = this.$el.querySelector(".mce-tinymce");
      let _this=this;
      if (element)
        this.$nextTick(() => {
          element.focus();
          console.log("FOCUSED",element,_this);
          // element.stopImmediatePropagation();
        });
      // window.tinyMCE.activeEditor.focus();

      //   console.log(this.$el,e);
      //     if ((e).closest(".mce-window").length) {
      //     e.stopImmediatePropagation();
      // }
    }
};
</script>```


I am using the component : https://github.com/dyonir/vue-tinymce-editor
But fields of the pop are not getting focussed/edited.

2 个答案:

答案 0 :(得分:3)

修改v-dialog的z-index:

当前

z-index: 202

已修改:

<style>
.v-dialog__content {z-index: 203 !important;}
</style>

别忘了!重要优先考虑样式。

答案 1 :(得分:0)

从vuetify 2.0开始,有一个新的道具“ retain-focus”,您可以将其设置为false,以解决上述问题。

<v-dialog :retain-focus="false">

选项卡焦点将默认返回到对话框的第一个子级。使用需要焦点的外部工具(如TinyMCE或Vue-Clipboard)时,请禁用此功能。

相关问题