Hi Marko,
Thanks for contacting Syncfusion support.
Query 1: Issue with Toolbar items.
We were able to reproduce your reported issue. So, we confirmed that the issue with “DropDownButton popup not shown “is a defect and logged a defect report.
The fix for this issue is estimated to be available on upcoming patch release which will be rolled out by the end of this week.
Query 2: Issue with Iframe height.
You can also refresh the toolbar and content of RTE by using toolbarModule.refreshToolbarOverflow() and setContentHeight() methods.
Please refer to the below code example:
|
<code>
<script type="text/javascript">
$("#myModal").on('shown.bs.modal', function () {
defaultRTE.toolbarModule.refreshToolbarOverflow(); // To refresh RTE’s toolbar
defaultRTE.setContentHeight(); // To refresh RTE’s content
$("#visCont").css("visibility", "visible");
});
</script>
</code> |
By using RTE control instance, you can access in both methods also you can call those methods in any of actions.
Regards,
Karthikeyan V.