Hi Konrad,
Greetings from Syncfusion support.
Yes, we could reproduce the reported issue while rendering RTE inside the modal dialog. The height is not calculated properly due to animation delay, so the toolbar misaligned over the editor section and able to access RTE.
We suggest you call the RichTextEditor - refreshUI() public method in modal dialog shown event callback to resolve the toolbar overflow issue. Please find code example is given below,
Main.js
import Vue from 'vue'
import App from './App.vue'
export const bus = new Vue();
new Vue({
el: '#app',
render: h => h(App)
})
|
App.vue
<b-modal v-model="isVisible"
:hide-footer="true"
:no-close-on-esc="true"
:no-close-on-backdrop="true"
:hide-header-close="true"
@shown="onModalShown">
<rte v-model="modalValue"
:width="WIDTH"
:height="HEIGHT">
</rte>
<b-button size="sm" @click="toggleModal">
{{ 'Close' }}
</b-button>
</b-modal>
<script>
import { bus } from './main';
export default {
methods: {
onModalShown() {
bus.$emit('refresh');
}
}
}
</script>
|
Rte.vue
<ejs-richtexteditor ref="rteRef" :created="onCreate">
</ejs-richtexteditor>
<script>
import { bus } from './main';
export default {
methods: {
onCreate: function() {
bus.$on('refresh', this.refreshRte)
},
refreshRte() {
this.$refs.rteRef.refreshUI();
}
}
};
</script> |
For your reference, we have modified a sample, please get it from the below link
Note: In the above sample to invoke RTE refreshUI by parent to child component communication using Event Bus approach.
Regards,
Pandiyaraj